@rotki/eslint-config 3.2.0 → 3.2.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/index.cjs CHANGED
@@ -243215,6 +243215,7 @@ async function ignores(userIgnores = []) {
243215
243215
  init_cjs_shims();
243216
243216
  async function imports(options = {}) {
243217
243217
  const {
243218
+ overrides = {},
243218
243219
  stylistic: stylistic2 = true
243219
243220
  } = options;
243220
243221
  return [
@@ -243263,7 +243264,8 @@ async function imports(options = {}) {
243263
243264
  ],
243264
243265
  ...stylistic2 ? {
243265
243266
  "import/newline-after-import": ["error", { considerComments: true, count: 1 }]
243266
- } : {}
243267
+ } : {},
243268
+ ...overrides
243267
243269
  }
243268
243270
  }
243269
243271
  ];
package/dist/index.js CHANGED
@@ -243151,6 +243151,7 @@ async function ignores(userIgnores = []) {
243151
243151
  init_esm_shims();
243152
243152
  async function imports(options = {}) {
243153
243153
  const {
243154
+ overrides = {},
243154
243155
  stylistic: stylistic2 = true
243155
243156
  } = options;
243156
243157
  return [
@@ -243199,7 +243200,8 @@ async function imports(options = {}) {
243199
243200
  ],
243200
243201
  ...stylistic2 ? {
243201
243202
  "import/newline-after-import": ["error", { considerComments: true, count: 1 }]
243202
- } : {}
243203
+ } : {},
243204
+ ...overrides
243203
243205
  }
243204
243206
  }
243205
243207
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rotki/eslint-config",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "type": "module",
5
5
  "license": "AGPL-3.0",
6
6
  "bugs": {
@@ -100,7 +100,7 @@
100
100
  "rimraf": "6.0.1",
101
101
  "tsup": "8.3.0",
102
102
  "typescript": "5.6.2",
103
- "@rotki/eslint-config": "3.2.0"
103
+ "@rotki/eslint-config": "3.2.1"
104
104
  },
105
105
  "engines": {
106
106
  "node": ">=20 <21",