@juuso.piikkila/eslint-config-typescript 3.0.6 → 3.0.8
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 +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [3.0.8](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.7...3.0.8) (2025-03-09)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* only check vue files ([a108a4d](https://github.com/juusopiikkila/eslint-config-typescript/commit/a108a4ddce56e1c2ed4910e3fe019ade8ddb2140))
|
|
6
|
+
|
|
7
|
+
## [3.0.7](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.6...3.0.7) (2025-03-09)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* remove tsconfigRootDir ([d3aac1f](https://github.com/juusopiikkila/eslint-config-typescript/commit/d3aac1f26a9cc1d562faf3f2f3712048b6c8f46b))
|
|
12
|
+
|
|
1
13
|
## [3.0.6](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.5...3.0.6) (2025-03-09)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
|
@@ -7,7 +7,7 @@ module.exports = [
|
|
|
7
7
|
...pluginVueA11y.configs['flat/recommended'],
|
|
8
8
|
{
|
|
9
9
|
files: [
|
|
10
|
-
'**/*.
|
|
10
|
+
'**/*.vue',
|
|
11
11
|
],
|
|
12
12
|
rules: {
|
|
13
13
|
'vue/custom-event-name-casing': [
|
|
@@ -195,8 +195,6 @@ module.exports = [
|
|
|
195
195
|
parser: require('vue-eslint-parser'),
|
|
196
196
|
parserOptions: {
|
|
197
197
|
project: true,
|
|
198
|
-
// eslint-disable-next-line no-undef
|
|
199
|
-
tsconfigRootDir: __dirname,
|
|
200
198
|
parser: {
|
|
201
199
|
ts: require('@typescript-eslint/parser'),
|
|
202
200
|
'<template>': 'espree',
|