fix: remove unused parserOptions.project in frontend ESLint, fix prettier glob pattern

This commit is contained in:
Sergey Krylov 2026-06-14 09:05:57 +03:00
parent 6a7706f7be
commit 5ff9cd6190
2 changed files with 1 additions and 3 deletions

View File

@ -1,8 +1,6 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
ecmaFeatures: { jsx: true },
},

View File

@ -24,7 +24,7 @@
"apps/backend/src/**/*.ts": ["eslint --max-warnings=0"],
"apps/backend/test/**/*.ts": ["eslint --max-warnings=0"],
"apps/frontend/src/**/*.{ts,tsx}": ["eslint --max-warnings=0"],
"*.{ts,tsx}": ["prettier --check"]
"**/*.{ts,tsx}": ["prettier --check"]
},
"devDependencies": {
"husky": "^9.1.7",