-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
36 lines (36 loc) · 845 Bytes
/
.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": {
"es6": true,
"node": true,
"jest": true
},
"extends": ["airbnb-typescript/base"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"rules": {
"semi": 0,
"@typescript-eslint/semi": 0,
"@typescript-eslint/no-use-before-define": 0,
"indent": [0, 4],
"no-tabs": 0,
"@typescript-eslint/indent": [0, 4],
"no-use-before-define": 0,
"no-mixed-spaces-and-tabs": 0,
"import/prefer-default-export": 0,
"implicit-arrow-linebreak": 0,
"function-paren-newline": 0,
"import/no-unresolved": [2, { "commonjs": true }],
"curly": 0,
"operator-linebreak": 0,
"nonblock-statement-body-position": 0,
"no-confusing-arrow": 0,
"import/extensions": 0
}
}