forked from StrikeFinance/strike-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
37 lines (37 loc) · 1.1 KB
/
.eslintrc.js
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
module.exports = {
"env": {
"browser": true,
"es6": true,
"jasmine": true,
},
"parser": "babel-eslint",
"extends": ["airbnb", "plugin:prettier/recommended"],
"plugins": ["jsx-a11y", "prettier"],
"rules": {
"import/extensions": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/click-events-have-key-events": 0,
"react/jsx-filename-extension": [1, {"extensions": [".js"]}],
"react/jsx-one-expression-per-line": 0,
"react/no-array-index-key": 0,
"react/forbid-prop-types": 0,
"react/destructuring-assignment": 0,
"react/jsx-wrap-multilines": 0,
"jsx-a11y/no-noninteractive-element-interactions": 0,
"camelcase": 0,
"no-nested-ternary": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"dot-notation": 0,
"array-callback-return": 0,
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
},
},
};