-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
39 lines (39 loc) · 971 Bytes
/
.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
{
"extends": [
"airbnb-base",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"env": {
"browser": true,
"node": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-param-reassign": 0,
"no-console": 0,
"no-useless-constructor": 0,
"global-require": 0,
"no-underscore-dangle": 0,
"no-bitwise": 0,
"max-len": 0,
"no-continue": 0,
"no-cond-assign": 0,
"no-plusplus": 0,
"no-use-before-define": 0,
"lines-between-class-members": 0,
"new-cap": 0,
"@typescript-eslint/indent": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/no-use-before-define": 0,
"import/extensions": ["error", { "ts": "never" }]
}
}