@juuso.piikkila/eslint-config-typescript 3.0.12 → 3.0.14
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.14](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.13...3.0.14) (2025-03-10)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update vue config ([f06f8d0](https://github.com/juusopiikkila/eslint-config-typescript/commit/f06f8d0fa1e65e014fa6c530de2af6018578ec09))
|
|
6
|
+
|
|
7
|
+
## [3.0.13](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.12...3.0.13) (2025-03-10)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix imports again ([f30732c](https://github.com/juusopiikkila/eslint-config-typescript/commit/f30732cb2070c44493577655f84f7348a9b577f1))
|
|
12
|
+
|
|
1
13
|
## [3.0.12](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.11...3.0.12) (2025-03-10)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
|
@@ -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 typescriptTypeChecking from 'eslint-config-canonical/configurations/typescript-type-checking.js';
|
|
5
|
+
import typescript from 'eslint-config-canonical/configurations/typescript.js';
|
|
6
6
|
|
|
7
7
|
export default [
|
|
8
8
|
typescript.recommended,
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import typescriptEslintParser from '@typescript-eslint/parser';
|
|
2
2
|
import pluginVue from 'eslint-plugin-vue';
|
|
3
3
|
import pluginVueA11y from 'eslint-plugin-vuejs-accessibility';
|
|
4
|
-
import { defineConfig } from 'eslint/config';
|
|
5
4
|
import globals from 'globals';
|
|
6
5
|
import vueParser from 'vue-eslint-parser';
|
|
7
6
|
|
|
8
|
-
export default
|
|
7
|
+
export default [
|
|
9
8
|
...pluginVue.configs['flat/recommended'],
|
|
10
9
|
...pluginVueA11y.configs['flat/recommended'],
|
|
11
10
|
{
|
|
@@ -207,4 +206,4 @@ export default defineConfig([
|
|
|
207
206
|
'vuejs-accessibility/label-has-for': 'off',
|
|
208
207
|
},
|
|
209
208
|
},
|
|
210
|
-
]
|
|
209
|
+
];
|
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.14",
|
|
5
5
|
"main": "index.js",
|
|
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/**/*.js\" \"index.js\""
|
|
14
|
+
"lint": "eslint \"configurations/**/*.js\" \"eslint.config.mjs\" \"index.js\""
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"eslint": "^9.0.0",
|