-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
138 lines (102 loc) · 4 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"root": true,
"env": {
"node": true,
"commonjs": true,
"es6": true,
"jquery": false,
"jest": true,
"jasmine": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"allowImportExportEverywhere": true,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"parser": "babel-eslint",
"plugins": ["promise"],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"rules": {
"quotes": ["warn","single"],
"semi": ["warn","always"],
"no-var": ["warn"],
// Removed rule "disallow the use of console" from recommended eslint rules
"no-console": "off",
// Removed rule "disallow multiple spaces in regular expressions" from recommended eslint rules
"no-regex-spaces": "off",
// Removed rule "disallow the use of debugger" from recommended eslint rules
"no-debugger": "off",
// Removed rule "disallow unused variables" from recommended eslint rules
"no-unused-vars": "off",
// Removed rule "disallow mixed spaces and tabs for indentation" from recommended eslint rules
"no-mixed-spaces-and-tabs": "off",
// Removed rule "disallow the use of undeclared variables unless mentioned in /*global */ comments" from recommended eslint rules
"no-undef": "off",
// Warn against template literal placeholder syntax in regular strings
"no-template-curly-in-string": 1,
// Warn if return statements do not either always or never specify values
"consistent-return": "off",
// Warn if no return statements in callbacks of array methods
"array-callback-return": "off",
// Require the use of === and !==
"eqeqeq": 0,
// Disallow the use of alert, confirm, and prompt
"no-alert": 0,
// Disallow the use of arguments.caller or arguments.callee
"no-caller": 0,
// Disallow null comparisons without type-checking operators
"no-eq-null": 0,
// Disallow the use of eval()
"no-eval": 0,
// Warn against extending native types
"no-extend-native": 1,
// Warn against unnecessary calls to .bind()
"no-extra-bind": 1,
// Warn against unnecessary labels
"no-extra-label": 1,
// Disallow leading or trailing decimal points in numeric literals
"no-floating-decimal": 0,
// Warn against shorthand type conversions
"no-implicit-coercion": 1,
// Warn against function declarations and expressions inside loop statements
"no-loop-func": 1,
// Disallow new operators with the Function object
"no-new-func": 0,
// Warn against new operators with the String, Number, and Boolean objects
"no-new-wrappers": 0,
// Disallow throwing literals as exceptions
"no-throw-literal": 0,
// Require using Error objects as Promise rejection reasons
"prefer-promise-reject-errors": 0,
// Enforce “for” loop update clause moving the counter in the right direction
"for-direction": 0,
// Enforce return statements in getters
"getter-return": 0,
// Disallow await inside of loops
"no-await-in-loop": 0,
// Disallow comparing against -0
"no-compare-neg-zero": 0,
// Warn against catch clause parameters from shadowing variables in the outer scope
"no-catch-shadow": 0,
// Disallow identifiers from shadowing restricted names
"no-shadow-restricted-names": 0,
// Enforce return statements in callbacks of array methods
"callback-return": 0,
// Require error handling in callbacks
"handle-callback-err": 0,
// Warn against string concatenation with __dirname and __filename
"no-path-concat": 0,
// Prefer using arrow functions for callbacks
"prefer-arrow-callback": 0,
// Return inside each then() to create readable and reusable Promise chains.
// Forces developers to return console logs and http calls in promises.
"promise/always-return": 0,
//Enforces the use of catch() on un-returned promises
"promise/catch-or-return": 0,
// Warn against nested then() or catch() statements
"promise/no-nesting": 0
}
}