-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.eslintrc
51 lines (51 loc) · 1.23 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
{
"extends": ["airbnb", "prettier", "prettier/react"],
"parserOptions": {
"ecmaVersion": 2016,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"jest": true,
"jasmine": true
},
"plugins": ["react", "typescript"],
"settings": {
"react": {
"version": "16.12"
},
"import/resolver": {
"eslint-import-resolver-typescript": true
}
},
"parser": "@typescript-eslint/parser",
"rules": {
"no-console": 2,
"no-plusplus": 0,
/* avoids conflicts with TS types, TSC checks for unused vars instead */
"no-unused-vars": 0,
"no-use-before-define": ["error", "nofunc"],
"import/extensions": [0, "never", { "ts": "never" }],
"import/prefer-default-export": 0,
"import/no-unresolved": [
2,
{
"ignore": ["gymnast"]
}
],
"import/no-extraneous-dependencies": 0,
"jsx-a11y/href-no-hash": 0,
"react/default-props-match-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/jsx-props-no-spreading": 0,
"react/no-deprecated": 2,
"react/no-multi-comp": 0,
"react/prop-types": 0,
"react/require-default-props": 0,
"react/state-in-constructor": 0
}
}