@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 CHANGED
@@ -9,7 +9,7 @@ import parse from "parse-gitignore";
9
9
  import { execSync } from "node:child_process";
10
10
 
11
11
  //#region package.json
12
- var version = "1.19.0";
12
+ var version = "1.19.1";
13
13
 
14
14
  //#endregion
15
15
  //#region src/cli/constants.ts
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": ["error", "never"],
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@infernodesign/eslint-config",
3
3
  "description": "ESLint config for Inferno Design.",
4
- "version": "1.19.0",
4
+ "version": "1.19.1",
5
5
  "type": "module",
6
6
  "author": "Inferno Design <support@infernodesign.com>",
7
7
  "license": "MIT",