We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e93c394 commit 617ddccCopy full SHA for 617ddcc
1 file changed
packages/eslint-config-default/index.js
@@ -14,7 +14,9 @@ module.exports = {
14
'arrow-body-style': 'off',
15
'class-methods-use-this': 'off',
16
'max-len': [2, 140, 4],
17
- 'indent': ['error', 4, {'SwitchCase': 1}],
+ 'indent': ['error', 4, {
18
+ 'SwitchCase': 1
19
+ }],
20
'no-continue': 'off',
21
'no-prototype-builtins': 'off',
22
'no-underscore-dangle': ['error', {
@@ -24,9 +26,13 @@ module.exports = {
24
26
'prefer-destructuring': ['error', {
25
27
'array': false
28
}],
- 'no-param-reassign': [
- "error", { "props": false }
29
- ],
30
- 'operator-linebreak': 'off'
+ 'no-param-reassign': ['error', {
+ 'props': false
31
32
+ 'operator-linebreak': 'off',
33
+ 'no-multiple-empty-lines': ['error', {
34
+ 'max': 2,
35
+ 'maxEOF': 1
36
+ }]
37
}
38
};
0 commit comments