-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc
56 lines (56 loc) · 1.53 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
53
54
55
56
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"settings": {
"pragma": "React",
"version": "detect"
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"airbnb-typescript"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-explicit-any": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"no-async-promise-executor": "off",
"no-console": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"global-require": "off",
"arrow-body-style": "off",
"implicit-arrow-linebreak": "off",
"object-curly-newline": "off",
"lines-between-class-members": "off",
"function-paren-newline": "off",
"linebreak-style": "off",
"operator-linebreak": "off",
"no-prototype-builtins": "off",
"consistent-return": "off",
"max-len": ["warn", { "code": 120 }]
}
}