forked from danielcaldas/react-d3-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
36 lines (36 loc) · 921 Bytes
/
.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
module.exports = {
"extends": [
"eslint:recommended"
],
"globals": {
"document": true,
"Reflect": true,
"window": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"standard",
"promise",
"react"
],
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"camelcase": "error",
"keyword-spacing": "error",
"max-len": ["error", 120, 4, { "ignoreComments": true }],
"max-lines": ["error", {"max": 400, "skipComments": true}],
"newline-after-var": ["error", "always"],
"no-nested-ternary": "error",
"no-useless-constructor": "error",
"semi": "error",
"require-jsdoc": "error",
"valid-jsdoc": "error"
}
};