@juuso.piikkila/eslint-config-typescript 3.0.3 → 3.0.5
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 +12 -0
- package/configurations/vue/index.cjs +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [3.0.5](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.4...3.0.5) (2025-03-09)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* add parser ([d4439d8](https://github.com/juusopiikkila/eslint-config-typescript/commit/d4439d8755476ae0dc56fd38dba2936fb97380ee))
|
|
6
|
+
|
|
7
|
+
## [3.0.4](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.3...3.0.4) (2025-03-09)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* update vue config ([91935f5](https://github.com/juusopiikkila/eslint-config-typescript/commit/91935f52b03018af9e7084c9b3beb90ae3c9f3c2))
|
|
12
|
+
|
|
1
13
|
## [3.0.3](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.2...3.0.3) (2025-03-09)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
const pluginVue = require('eslint-plugin-vue');
|
|
2
2
|
const pluginVueA11y = require('eslint-plugin-vuejs-accessibility');
|
|
3
3
|
const globals = require('globals');
|
|
4
|
-
const typescriptEslint = require('typescript-eslint');
|
|
5
4
|
|
|
6
5
|
module.exports = [
|
|
7
6
|
...pluginVue.configs['flat/recommended'],
|
|
@@ -193,8 +192,10 @@ module.exports = [
|
|
|
193
192
|
globals: {
|
|
194
193
|
...globals['shared-node-browser'],
|
|
195
194
|
},
|
|
195
|
+
parser: require('vue-eslint-parser'),
|
|
196
196
|
parserOptions: {
|
|
197
|
-
parser:
|
|
197
|
+
parser: require('@typescript-eslint/parser'),
|
|
198
|
+
project: true,
|
|
198
199
|
},
|
|
199
200
|
},
|
|
200
201
|
},
|