@jarsec/eslint-config 6.2.0 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/index.mjs +11 -0
  3. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
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
+
11
+ ## 6.2.1
12
+
13
+ ### Patch Changes
14
+
15
+ - 96bca17: chore(deps): update dependency eslint-plugin-perfectionist to ^4.12.3
16
+ - 7d61739: chore(deps): update dependency eslint-plugin-n to ^17.17.0
17
+ - 0d449ec: chore(deps): update dependency typescript-eslint to ^8.31.1
18
+ - df500da: chore(deps): update eslint monorepo to ^9.25.1
19
+
3
20
  ## 6.2.0
4
21
 
5
22
  ### Minor 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.0",
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",
@@ -11,17 +11,17 @@
11
11
  ".": "./index.mjs"
12
12
  },
13
13
  "dependencies": {
14
- "@eslint/js": "^9.21.0",
15
- "@stylistic/eslint-plugin": "^4.2.0",
16
- "eslint-plugin-n": "^17.16.1",
17
- "eslint-plugin-perfectionist": "^4.9.0",
14
+ "@eslint/js": "^9.25.1",
15
+ "@stylistic/eslint-plugin": "^4.4.0",
16
+ "eslint-plugin-n": "^17.17.0",
17
+ "eslint-plugin-perfectionist": "^4.12.3",
18
18
  "eslint-plugin-unicorn": "^57.0.0",
19
- "typescript-eslint": "^8.26.0"
19
+ "typescript-eslint": "^8.31.1"
20
20
  },
21
21
  "devDependencies": {
22
- "@types/node": "^20.17.23",
23
- "eslint": "^9.21.0",
24
- "typescript": "^5.3.3"
22
+ "@types/node": "^20.17.57",
23
+ "eslint": "^9.25.1",
24
+ "typescript": "^5.8.3"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "eslint": "^9.13.0",