@juuso.piikkila/eslint-config-typescript 3.0.20 → 3.0.22
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,16 @@
|
|
|
1
|
+
## [3.0.22](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.21...3.0.22) (2025-04-14)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update imports ([7ea1dab](https://github.com/juusopiikkila/eslint-config-typescript/commit/7ea1dab12cd5b592c6eab08c5a5cbd31ef13f5fd))
|
|
6
|
+
|
|
7
|
+
## [3.0.21](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.20...3.0.21) (2025-03-17)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix imports ([1726d86](https://github.com/juusopiikkila/eslint-config-typescript/commit/1726d861c10cfec6f2d9516196577100252b5914))
|
|
12
|
+
* fix lint script ([b9b8b40](https://github.com/juusopiikkila/eslint-config-typescript/commit/b9b8b403f79e30a691e9c3206ea1b671d4e8e2af))
|
|
13
|
+
|
|
1
14
|
## [3.0.20](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.19...3.0.20) (2025-03-17)
|
|
2
15
|
|
|
3
16
|
### 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
|
|
4
|
-
import regexp from 'eslint-config-canonical/configurations/regexp
|
|
3
|
+
import * as canonical from 'eslint-config-canonical/configurations/canonical';
|
|
4
|
+
import * as regexp from 'eslint-config-canonical/configurations/regexp';
|
|
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
|
|
5
|
-
import
|
|
4
|
+
import * as typescript from 'eslint-config-canonical/configurations/typescript';
|
|
5
|
+
import * as typescriptTypeChecking from 'eslint-config-canonical/configurations/typescript-type-checking';
|
|
6
6
|
|
|
7
7
|
export default [
|
|
8
8
|
typescript.recommended,
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
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.22",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"author": "Juuso Piikkilä",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"packageManager": "yarn@4.
|
|
8
|
+
"packageManager": "yarn@4.9.0",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"publishConfig": {
|
|
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",
|