We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df0ac96 commit c1074cbCopy full SHA for c1074cb
.eslintrc.json
@@ -12,16 +12,16 @@
12
"rules": {
13
"indent": ["error", 2, { "SwitchCase": 1 }],
14
"linebreak-style": ["error", "unix"],
15
- "no-trailing-spaces": 2,
16
- "eol-last": 2,
+ "no-trailing-spaces": "error",
+ "eol-last": "error",
17
"space-in-parens": ["error", "never"],
18
- "no-multiple-empty-lines": 1,
+ "no-multiple-empty-lines": "warn",
19
"prefer-const": "error",
20
"space-infix-ops": "error",
21
"no-useless-escape": "off",
22
"require-atomic-updates": "off",
23
- "no-var": 1,
24
- "no-await-in-loop" : 1
+ "no-var": "warn",
+ "no-await-in-loop" : "warn"
25
},
26
"globals" : {
27
"Parse" : true
0 commit comments