@juuso.piikkila/eslint-config-typescript 3.0.20 → 3.0.21
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,10 @@
|
|
|
1
|
+
## [3.0.21](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.20...3.0.21) (2025-03-17)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fix imports ([1726d86](https://github.com/juusopiikkila/eslint-config-typescript/commit/1726d861c10cfec6f2d9516196577100252b5914))
|
|
6
|
+
* fix lint script ([b9b8b40](https://github.com/juusopiikkila/eslint-config-typescript/commit/b9b8b403f79e30a691e9c3206ea1b671d4e8e2af))
|
|
7
|
+
|
|
1
8
|
## [3.0.20](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.19...3.0.20) (2025-03-17)
|
|
2
9
|
|
|
3
10
|
### Bug Fixes
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
2
2
|
import stylisticPlugin from '@stylistic/eslint-plugin';
|
|
3
|
-
import canonical from 'eslint-config-canonical/configurations/canonical.js';
|
|
4
|
-
import regexp from 'eslint-config-canonical/configurations/regexp.js';
|
|
3
|
+
import * as canonical from 'eslint-config-canonical/configurations/canonical.js';
|
|
4
|
+
import * as regexp from 'eslint-config-canonical/configurations/regexp.js';
|
|
5
5
|
import canonicalPlugin from 'eslint-plugin-canonical';
|
|
6
6
|
import importPlugin from 'eslint-plugin-import';
|
|
7
7
|
import perfectionistPlugin from 'eslint-plugin-perfectionist';
|
|
@@ -93,7 +93,7 @@ export default [
|
|
|
93
93
|
'canonical/filename-match-regex': [
|
|
94
94
|
'error',
|
|
95
95
|
{
|
|
96
|
-
regex: '^[a-z0-9
|
|
96
|
+
regex: '^[a-z0-9-.()\\[\\]]+$',
|
|
97
97
|
},
|
|
98
98
|
],
|
|
99
99
|
'canonical/id-match': 'off',
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
2
2
|
import stylisticPlugin from '@stylistic/eslint-plugin';
|
|
3
3
|
import typescriptEslintPlugin from '@typescript-eslint/eslint-plugin';
|
|
4
|
-
import typescriptTypeChecking from 'eslint-config-canonical/configurations/typescript-type-checking.js';
|
|
5
|
-
import typescript from 'eslint-config-canonical/configurations/typescript.js';
|
|
4
|
+
import * as typescriptTypeChecking from 'eslint-config-canonical/configurations/typescript-type-checking.js';
|
|
5
|
+
import * as typescript from 'eslint-config-canonical/configurations/typescript.js';
|
|
6
6
|
|
|
7
7
|
export default [
|
|
8
8
|
typescript.recommended,
|
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.
|
|
4
|
+
"version": "3.0.21",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"author": "Juuso Piikkilä",
|
|
7
7
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"lint": "eslint \"configurations/**/*.mjs\" \"eslint.config.mjs\" \"index.
|
|
14
|
+
"lint": "eslint \"configurations/**/*.mjs\" \"eslint.config.mjs\" \"index.mjs\""
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"eslint": "^9.0.0",
|