-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path.eslintrc
38 lines (38 loc) · 865 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
{
"extends": [
"airbnb-typescript/base",
"plugin:prettier/recommended",
"plugin:jsdoc/recommended"
],
"plugins": ["import"],
"env": {
"browser": true,
"node": true,
"jest": true
},
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"rules": {
// eslint
"camelcase": 0,
"lines-between-class-members": 0,
"max-classes-per-file": 0,
"max-len": 0,
"new-cap": 0,
"no-bitwise": 0,
"no-cond-assign": 0,
"no-console": 0,
"no-continue": 0,
"no-param-reassign": 0,
"no-plusplus": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
// eslint-plugin-import
"import/prefer-default-export": 0,
// @typescript-eslint
"@typescript-eslint/indent": 0,
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/naming-convention": 0
}
}