-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
executable file
·36 lines (36 loc) · 1.4 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
35
36
{
"env": {
// Проект для браузера
"browser": true,
// Включаем возможности ES6
"es6": true,
// Добавляем возможности ES2017
"es2017": true
},
"root": true,
"ignorePatterns": ["dist", "projects/**/*", ".tmp", "gulp", "db", "*.config.js"],
// Плагин с наборами правил для TypeScript
"plugins": ["@typescript-eslint", "prettier"],
// Наборы правил
"extends": [
// Базовый набор правил eslint
"eslint:recommended",
// Отключаем правила из базового набора
"plugin:@typescript-eslint/eslint-recommended",
// Базовые правила TypeScript
"plugin:@typescript-eslint/recommended",
// Правила TS, требующие инфо о типах
"plugin:@typescript-eslint/recommended-requiring-type-checking",
// Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
"prettier",
"plugin:prettier/recommended"
],
// Движок парсинга
"parser": "@typescript-eslint/parser",
"parserOptions": {
// Движку нужен проект TS для правил с типами
"project": "tsconfig.json",
"tsconfigRootDir": "."
},
"rules": {}
}