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 51f5114 commit ba64cf5Copy full SHA for ba64cf5
.eslintignore
@@ -1 +1,2 @@
1
node_modules/
2
+Exercises/
.eslintrc.json
@@ -113,6 +113,9 @@
113
"new-parens": [
114
"error"
115
],
116
+ "no-lonely-if": [
117
+ "error"
118
+ ],
119
"no-trailing-spaces": [
120
121
@@ -148,7 +151,7 @@
148
151
"space-before-function-paren": [
149
152
"error",
150
153
{
- "anonymous": "always",
154
+ "anonymous": "never",
155
"named": "never",
156
"asyncArrow": "always"
157
}
@@ -259,13 +262,5 @@
259
262
260
263
"never"
261
264
]
- },
- "overrides": [
- {
265
- "files": ["1-let.js"],
266
- "rules": {
267
- "prefer-const": "off"
268
- }
269
270
- ]
271
-}
+ }
+}
0 commit comments