-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc
52 lines (52 loc) · 1.27 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
50
51
52
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint/eslint-plugin"],
"env": {
"es6": true,
"node": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".ts"]
}
}
},
"extends": [
"airbnb-base",
"airbnb-typescript/base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.test.json"
},
"rules": {
"one-var": "off",
"no-mixed-operators": "off",
"no-restricted-properties": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-underscore-dangle": "off",
"no-bitwise": "off",
"arrow-parens": "off",
"object-curly-newline": "off",
"prefer-destructuring": "off",
"one-var-declaration-per-line": "off",
"no-unused-vars": "off",
"no-undef": "off",
"no-dupe-class-members": "off",
"comma-dangle": "off",
"max-len": "off",
"import/prefer-default-export": "off",
"import/extensions": "off",
"import/no-cycle": "off",
"lines-between-class-members": "off",
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/naming-convention": "off"
}
}