-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy path.eslintrc
More file actions
24 lines (24 loc) · 625 Bytes
/
.eslintrc
File metadata and controls
24 lines (24 loc) · 625 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
{
"extends": ["@jukben"],
"rules": {
"react/jsx-filename-extension": [
1,
{
"extensions": [".js", ".jsx"]
}
],
"no-underscore-dangle": 0,
"no-console": 0,
"flowtype/no-weak-types": 0,
"import/prefer-default-export": 0,
"react/require-default-props": 0,
"react/default-props-match-prop-types": 0,
"react/destructuring-assignment": 0,
"prefer-destructuring": 0,
"react/sort-comp": 0,
"no-plusplus": 0,
"jsx-a11y/click-events-have-key-events": 0,
"no-unused-expressions": 0,
"react/forbid-prop-types": [0, { "forbid": ["object"] }]
}
}