@juuso.piikkila/eslint-config-typescript 3.0.2 → 3.0.4

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.4](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.3...3.0.4) (2025-03-09)
2
+
3
+ ### Bug Fixes
4
+
5
+ * update vue config ([91935f5](https://github.com/juusopiikkila/eslint-config-typescript/commit/91935f52b03018af9e7084c9b3beb90ae3c9f3c2))
6
+
7
+ ## [3.0.3](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.2...3.0.3) (2025-03-09)
8
+
9
+ ### Bug Fixes
10
+
11
+ * vue config fixed? ([99f5891](https://github.com/juusopiikkila/eslint-config-typescript/commit/99f5891b515d26a754385debcfdbd89e020fda4c))
12
+
1
13
  ## [3.0.2](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.1...3.0.2) (2025-03-09)
2
14
 
3
15
  ### Bug Fixes
@@ -6,6 +6,9 @@ module.exports = [
6
6
  ...pluginVue.configs['flat/recommended'],
7
7
  ...pluginVueA11y.configs['flat/recommended'],
8
8
  {
9
+ files: [
10
+ '**/*.{ts,vue}',
11
+ ],
9
12
  rules: {
10
13
  'vue/custom-event-name-casing': [
11
14
  'error',
@@ -184,9 +187,14 @@ module.exports = [
184
187
  'vuejs-accessibility/label-has-for': 'off',
185
188
  },
186
189
  languageOptions: {
190
+ ecmaVersion: 'latest',
187
191
  sourceType: 'module',
188
192
  globals: {
189
- ...globals.browser,
193
+ ...globals['shared-node-browser'],
194
+ },
195
+ parserOptions: {
196
+ parser: require('@typescript-eslint/parser'),
197
+ project: true,
190
198
  },
191
199
  },
192
200
  },
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.2",
4
+ "version": "3.0.4",
5
5
  "main": "index.cjs",
6
6
  "author": "Juuso Piikkilä",
7
7
  "license": "MIT",