@infernodesign/eslint-config 1.19.0 → 1.19.1
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/cli.js +1 -1
- package/dist/index.js +10 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -582,7 +582,16 @@ async function stylistic(options = {}) {
|
|
|
582
582
|
}],
|
|
583
583
|
...!spacing ? {
|
|
584
584
|
"style/array-bracket-spacing": ["error", "never"],
|
|
585
|
-
"style/object-curly-spacing": [
|
|
585
|
+
"style/object-curly-spacing": [
|
|
586
|
+
"error",
|
|
587
|
+
"never",
|
|
588
|
+
{ overrides: {
|
|
589
|
+
ImportAttributes: "always",
|
|
590
|
+
ImportDeclaration: "always",
|
|
591
|
+
ExportAllDeclaration: "always",
|
|
592
|
+
ExportNamedDeclaration: "always"
|
|
593
|
+
} }
|
|
594
|
+
],
|
|
586
595
|
"style/space-in-parens": ["error", "never"]
|
|
587
596
|
} : {
|
|
588
597
|
"style/array-bracket-spacing": ["error", "always"],
|
package/package.json
CHANGED