@soleil-se/eslint-config 6.2.0 → 6.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/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ All changes in this repository are noted here.
7
7
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
  and the project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
+ ## [6.2.1] - 2025-04-01
11
+
12
+ * Set `svelte/require-each-key` as warning instead of error.
13
+
10
14
  ## [6.2.0] - 2025-03-31
11
15
 
12
16
  * Update `eslint-plugin-svelte` version 3.
package/bin/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soleil-se/eslint-config",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "description": "ESLint configuration for Sitevision apps and projects.",
5
5
  "keywords": [
6
6
  "eslint",
@@ -22,8 +22,8 @@
22
22
  "./typescript": "./typescript.js",
23
23
  "./config/base": "./config/base.js",
24
24
  "./config/svelte": "./config/svelte.js",
25
- "./rules/js":"./rules/js/index.js",
26
- "./rules/svelte":"./rules/svelte/index.js"
25
+ "./rules/js": "./rules/js/index.js",
26
+ "./rules/svelte": "./rules/svelte/index.js"
27
27
  },
28
28
  "dependencies": {
29
29
  "eslint-config-prettier": "^10.1.1",
@@ -38,4 +38,4 @@
38
38
  "peerDependencies": {
39
39
  "eslint": ">= 9"
40
40
  }
41
- }
41
+ }
@@ -6,4 +6,5 @@ export default {
6
6
  'svelte/no-useless-mustaches': 'warn',
7
7
  'svelte/no-unused-svelte-ignore': 0,
8
8
  'svelte/prefer-const': 'error',
9
+ 'svelte/require-each-key': 'warn',
9
10
  };