@juuso.piikkila/eslint-config-typescript 3.0.18 → 3.0.20

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,3 +1,15 @@
1
+ ## [3.0.20](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.19...3.0.20) (2025-03-17)
2
+
3
+ ### Bug Fixes
4
+
5
+ * update canonical/filename-match-regex ([59e1939](https://github.com/juusopiikkila/eslint-config-typescript/commit/59e19398d07447f58cb89e1c2836ae3994ad374c))
6
+
7
+ ## [3.0.19](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.18...3.0.19) (2025-03-14)
8
+
9
+ ### Bug Fixes
10
+
11
+ * fix path ([0c87a0d](https://github.com/juusopiikkila/eslint-config-typescript/commit/0c87a0d334c2ef90a3f87961cc9541e13e7cec58))
12
+
1
13
  ## [3.0.18](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.17...3.0.18) (2025-03-13)
2
14
 
3
15
  ### Bug Fixes
@@ -93,9 +93,7 @@ export default [
93
93
  'canonical/filename-match-regex': [
94
94
  'error',
95
95
  {
96
- regex:
97
- '^[a-z0-9-.]+$',
98
- ignoreExporting: true,
96
+ regex: '^[a-z0-9-.\(\)\[\]]+$',
99
97
  },
100
98
  ],
101
99
  'canonical/id-match': 'off',
package/eslint.config.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  // eslint-disable-next-line import/no-useless-path-segments
2
- import rules from './configurations/base/index.js';
2
+ import rules from './configurations/base/index.mjs';
3
3
 
4
4
  export default [
5
5
  ...rules,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@juuso.piikkila/eslint-config-typescript",
3
3
  "description": "ESLint config for typescript projects",
4
- "version": "3.0.18",
4
+ "version": "3.0.20",
5
5
  "main": "index.mjs",
6
6
  "author": "Juuso Piikkilä",
7
7
  "license": "MIT",
@@ -11,10 +11,7 @@
11
11
  "access": "public"
12
12
  },
13
13
  "scripts": {
14
- "lint": "eslint \"configurations/**/*.js\" \"eslint.config.mjs\" \"index.js\""
15
- },
16
- "resolutions": {
17
- "eslint-config-canonical": "44.3.37"
14
+ "lint": "eslint \"configurations/**/*.mjs\" \"eslint.config.mjs\" \"index.js\""
18
15
  },
19
16
  "dependencies": {
20
17
  "eslint": "^9.0.0",