@frabbit/eslint-config 1.5.2 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +8 -0
- package/dist/index.js +8 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -302,6 +302,14 @@ var javascript = [
|
|
|
302
302
|
rules: {
|
|
303
303
|
"array-callback-return": "error",
|
|
304
304
|
"block-scoped-var": "error",
|
|
305
|
+
camelcase: [
|
|
306
|
+
"error",
|
|
307
|
+
{
|
|
308
|
+
ignoreDestructuring: true,
|
|
309
|
+
ignoreImports: true,
|
|
310
|
+
properties: "always"
|
|
311
|
+
}
|
|
312
|
+
],
|
|
305
313
|
"class-methods-use-this": "error",
|
|
306
314
|
"constructor-super": "error",
|
|
307
315
|
"dot-notation": "warn",
|
package/dist/index.js
CHANGED
|
@@ -199,6 +199,14 @@ var javascript = [
|
|
|
199
199
|
rules: {
|
|
200
200
|
"array-callback-return": "error",
|
|
201
201
|
"block-scoped-var": "error",
|
|
202
|
+
camelcase: [
|
|
203
|
+
"error",
|
|
204
|
+
{
|
|
205
|
+
ignoreDestructuring: true,
|
|
206
|
+
ignoreImports: true,
|
|
207
|
+
properties: "always"
|
|
208
|
+
}
|
|
209
|
+
],
|
|
202
210
|
"class-methods-use-this": "error",
|
|
203
211
|
"constructor-super": "error",
|
|
204
212
|
"dot-notation": "warn",
|