We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 719519a commit 5282a17Copy full SHA for 5282a17
eslint.config.ts
@@ -16,7 +16,7 @@ export default tseslint.config([
16
eslint.configs.recommended,
17
tseslint.configs.recommendedTypeChecked,
18
{
19
- ignores: ['*.mjs']
+ ignores: ['.next/', '*.mjs', 'next-env.d.ts']
20
},
21
22
files: ['**/*.{ts,tsx}'],
package.json
@@ -9,8 +9,8 @@
9
"type-check": "tsc --noEmit",
10
"format": "prettier --write .",
11
"format:check": "prettier --check .",
12
- "lint": "next lint --max-warnings=0 . .",
13
- "lint:fix": "next lint --fix . .",
+ "lint": "eslint --max-warnings=0 .",
+ "lint:fix": "eslint --fix .",
14
"prepare": "husky"
15
"dependencies": {
0 commit comments