@jarsec/eslint-config 6.2.1 → 6.2.2

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
@@ -1,5 +1,13 @@
1
1
  # @jarsec/eslint-config
2
2
 
3
+ ## 6.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f3c316f: Disable n/no-unpublished-import for tests and config files
8
+ - 766fcf5: Disable unicorn/no-null
9
+ - d5cdeef: chore(deps): update dependency typescript to ^5.8.3
10
+
3
11
  ## 6.2.1
4
12
 
5
13
  ### 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.2",
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.0",
16
16
  "eslint-plugin-n": "^17.17.0",
17
17
  "eslint-plugin-perfectionist": "^4.12.3",
18
18
  "eslint-plugin-unicorn": "^57.0.0",
19
19
  "typescript-eslint": "^8.31.1"
20
20
  },
21
21
  "devDependencies": {
22
- "@types/node": "^20.17.32",
22
+ "@types/node": "^20.17.57",
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",