-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
40 lines (40 loc) · 1.1 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
{
"parser": "babel-eslint",
"extends": ["airbnb"],
"plugins": ["react", "jsx-a11y"],
"env": {
"browser": true
},
"rules": {
"linebreak-style": [0, "error", "windows"],
"consistent-return": 0,
"global-require": 0,
"import/extensions": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default-member": 0,
"import/no-unresolved": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/interactive-supports-focus": 0,
"jsx-a11y/no-noninteractive-tabindex": 0,
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": ["Link"],
"specialLink": ["to"]
}
],
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"no-shadow": 0,
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/no-did-mount-set-state": 0,
"react/no-typos": 0,
"react/require-default-props": 0,
"react/sort-comp": 0,
"quotes": [0, "double"],
"comma-dangle": "off",
"import/no-named-as-default": 0
}
}