forked from subvisual/2018.mirrorconf.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
28 lines (28 loc) · 790 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
{
"plugins": ["jsx-a11y"],
"parser": "babel-eslint",
"extends": ["airbnb", "plugin:prettier/recommended", "plugin:jsx-a11y/recommended"],
"rules": {
"consistent-return": 0,
"import/no-extraneous-dependencies": 0,
"jsx-a11y/anchor-is-valid": ["error", {
"components": ["Link"],
"specialLink": ["to"]
}],
"jsx-a11y/no-noninteractive-tabindex": 0,
"react/jsx-filename-extension": 0,
"react/jsx-wrap-multilines": 0,
"react/no-multi-comp": [2, { "ignoreStateless": true }],
"react/no-unescaped-entities": ["error", {"forbid": [">", "\"", "}"]}],
"react/prefer-stateless-function": 0,
"react/prop-types": 0,
"react/sort-comp": 0
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"graphql": null
}
}