-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
52 lines (52 loc) · 1.52 KB
/
.eslintrc.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"root": true,
"env": {
"browser": false,
"commonjs": false,
"es6": true,
"node": true
},
"installedESLint": true,
"parserOptions": {
"ecmaFeatures": {
"globalReturn": false,
"impliedStrict": true,
"jsx": true,
"experimentalObjectRestSpread ": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
/*// Possible Errors
// --------------------
"comma-dangle": ["error", "never"],
"valid-jsdoc": ["error", {
"requireReturn": false,
"prefer": {
"return": "returns"
}
}],
// Best Practices
// --------------------
// Strict Mode
// --------------------
"strict": ["error", "safe"], // require "use strict" globally when inside a module wrapper and in function scopes everywhere else
// Variables
// --------------------
"no-shadow-restricted-names": "error",
// Node.js and CommonJS
// --------------------
// Stylistic Issues
// --------------------
"indent": ["error", 2],
"jsx-quotes": ["error", "prefer-double"],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"]
// ECMAScript 6
// --------------------*/
}
}