Skip to content

Commit 3ef06f7

Browse files
committed
fix: eslintrc in web
1 parent 479a031 commit 3ef06f7

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

apps/web/.eslintrc.cjs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,7 @@ module.exports = {
66
tsconfigRootDir: __dirname,
77
},
88
plugins: ['@typescript-eslint', 'prettier'],
9-
extends: [
10-
'next/core-web-vitals',
11-
'plugin:@typescript-eslint/eslint-recommended',
12-
'plugin:@typescript-eslint/recommended',
13-
'plugin:prettier/recommended',
14-
],
9+
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
1510
rules: {
1611
'prettier/prettier': ['error', { semi: false, singleQuote: true }],
1712
'@typescript-eslint/ban-types': 'off',
File renamed without changes.

apps/web/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
".next/types/**/*.ts",
3535
"public/*",
3636
"src/assets/**/svg",
37-
"scripts/*"
37+
"scripts/*",
38+
".eslintrc.cjs"
3839
],
3940
"exclude": ["node_modules"]
4041
}

0 commit comments

Comments
 (0)