-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
34 lines (34 loc) · 1.54 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"parser": "@typescript-eslint/parser", // Использовать парсер для TypeScript
"parserOptions": {
"ecmaVersion": 2020, // Использовать современный синтаксис ECMAScript
"sourceType": "module" // Использовать модули ES6
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"next/core-web-vitals",
"plugin:prettier/recommended", // Интеграция с Prettier
"prettier" // Отключение конфликтующих правил ESLint
],
"plugins": ["@typescript-eslint", "react", "react-hooks"],
"rules": {
// Ваши собственные правила
"react/react-in-jsx-scope": "off", // Не требуется в Next.js
"react/jsx-uses-react": "off", // Не требуется в Next.js
"no-console": "warn", // Предупреждение при использовании console.log
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_" }
], // Ошибка для неиспользуемых переменных, игнорируя переменные, начинающиеся с "_"
"prettier/prettier": ["error", { "endOfLine": "auto" }],
"@typescript-eslint/ban-ts-comment": "warn" // Настройки Prettier
},
"settings": {
"react": {
"version": "detect" // Автоматическое определение версии React
}
}
}