-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc
49 lines (49 loc) · 1.15 KB
/
.eslintrc
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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"airbnb-typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:compat/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"max-len": [2, 150, 4],
"no-continue": "off",
"no-bitwise": "off",
"no-underscore-dangle": "off",
"no-plusplus": "off",
"object-curly-newline": "off",
"new-cap": "off",
"class-methods-use-this": "off",
"function-paren-newline": "off",
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_", "ignoreRestSiblings": true }],
"no-confusing-arrow": "off",
"@typescript-eslint/camelcase": "off",
"import/prefer-default-export": "off",
"lines-between-class-members": "off",
"no-return-assign": "off",
"no-multi-assign": "off"
},
"settings": {
"import/resolver": {
"webpack": {}
},
"polyfills": [
"Object.values"
]
}
}