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
|
{
"parser": "@typescript-eslint/parser",
"extends": [
"airbnb-typescript/base",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"quotes": ["error", "single"],
"no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 1 } ],
"max-len": ["error", { "code": 120 }],
"arrow-parens": [2, "as-needed"],
"comma-dangle": ["error", "never"],
"import/extensions": ["error", { "ts": "never" }],
"class-methods-use-this": 0,
"arrow-body-style": 0,
"no-underscore-dangle": 0,
"no-cond-assign": 0,
"no-console": 0,
"no-plusplus": 0,
"linebreak-style": 0
}
}
|