-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
25 lines (25 loc) · 746 Bytes
/
.eslintrc
File metadata and controls
25 lines (25 loc) · 746 Bytes
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
{
"parser": "babel-eslint",
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import"
],
"globals": {
"graphql": true
},
"rules": {
"react/jsx-filename-extension": [0],
"react/prefer-stateless-function": [0],
"react/prop-types": [0],
"import/no-extraneous-dependencies": [0],
"comma-dangle": ["error", "never"],
"jsx-a11y/anchor-is-valid": [0],
"prefer-destructuring": [0],
"object-curly-newline": ["error", { "multiline": true, "minProperties": 5 }],
"arrow-body-style": ["error", "as-needed", { "requireReturnForObjectLiteral": true }],
"import/extensions": [0],
"no-console": "off"
}
}