@jarsec/eslint-config 6.2.1 → 6.2.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/index.mjs +11 -0
  3. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @jarsec/eslint-config
2
2
 
3
+ ## 6.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 2f45440: Update @types/node to v22
8
+ - 8e49865: chore(deps): update dependency eslint-plugin-perfectionist to ^4.15.0
9
+ - a67977d: chore(deps): update dependency @stylistic/eslint-plugin to ^4.4.1
10
+ - c462cc1: chore(deps): update dependency eslint-plugin-unicorn to v59
11
+
12
+ ## 6.2.2
13
+
14
+ ### Patch Changes
15
+
16
+ - f3c316f: Disable n/no-unpublished-import for tests and config files
17
+ - 766fcf5: Disable unicorn/no-null
18
+ - d5cdeef: chore(deps): update dependency typescript to ^5.8.3
19
+
3
20
  ## 6.2.1
4
21
 
5
22
  ### Patch Changes
package/index.mjs CHANGED
@@ -35,6 +35,7 @@ export default tseslint.config(
35
35
  'multiline-comment-style': ['error', 'starred-block'],
36
36
  'n/no-missing-import': 'off',
37
37
  'n/no-process-exit': 'off',
38
+ 'unicorn/no-null': 'off', // TODO: revisit this
38
39
  'unicorn/no-process-exit': 'off',
39
40
  'unicorn/prevent-abbreviations': 'off',
40
41
  },
@@ -45,4 +46,14 @@ export default tseslint.config(
45
46
  ],
46
47
  files: ['**/*.js'],
47
48
  },
49
+ {
50
+ files: [
51
+ 'eslint.config.js',
52
+ 'drizzle.config.ts',
53
+ '**/*.test.ts',
54
+ ],
55
+ rules: {
56
+ 'n/no-unpublished-import': 'off',
57
+ },
58
+ },
48
59
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jarsec/eslint-config",
3
- "version": "6.2.1",
3
+ "version": "6.2.3",
4
4
  "description": "jsec's eslint configurations",
5
5
  "author": "Jarrod Seccombe <jarrod.seccombe@icloud.com>",
6
6
  "license": "MIT",
@@ -12,16 +12,16 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "@eslint/js": "^9.25.1",
15
- "@stylistic/eslint-plugin": "^4.2.0",
15
+ "@stylistic/eslint-plugin": "^4.4.1",
16
16
  "eslint-plugin-n": "^17.17.0",
17
- "eslint-plugin-perfectionist": "^4.12.3",
18
- "eslint-plugin-unicorn": "^57.0.0",
17
+ "eslint-plugin-perfectionist": "^4.15.0",
18
+ "eslint-plugin-unicorn": "^59.0.1",
19
19
  "typescript-eslint": "^8.31.1"
20
20
  },
21
21
  "devDependencies": {
22
- "@types/node": "^20.17.32",
22
+ "@types/node": "^22.16.0",
23
23
  "eslint": "^9.25.1",
24
- "typescript": "^5.3.3"
24
+ "typescript": "^5.8.3"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "eslint": "^9.13.0",