@juuso.piikkila/eslint-config-typescript 3.0.15 → 3.0.17

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.17](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.16...3.0.17) (2025-03-13)
2
+
3
+ ### Bug Fixes
4
+
5
+ * fix merge ([8400136](https://github.com/juusopiikkila/eslint-config-typescript/commit/8400136f0c535b3214706a9b812a21d7ee14c249))
6
+
7
+ ## [3.0.16](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.15...3.0.16) (2025-03-13)
8
+
9
+ ### Bug Fixes
10
+
11
+ * fix import ([0914b8f](https://github.com/juusopiikkila/eslint-config-typescript/commit/0914b8fbe759ebf532281d490f4a9d39fbe78293))
12
+
1
13
  ## [3.0.15](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.14...3.0.15) (2025-03-13)
2
14
 
3
15
  ### Bug Fixes
@@ -23,7 +23,7 @@ export default [
23
23
  },
24
24
  },
25
25
  rules: {
26
- ...typescriptTypeChecking.recommended,
26
+ ...typescriptTypeChecking.recommended.rules,
27
27
  '@stylistic/member-delimiter-style': [
28
28
  2,
29
29
  {
@@ -1,5 +1,5 @@
1
+ import typescriptEslintPlugin from '@typescript-eslint/eslint-plugin';
1
2
  import typescriptEslintParser from '@typescript-eslint/parser';
2
- import typescriptEslintPlugin from '@typescript-eslint/plugin';
3
3
  import pluginVue from 'eslint-plugin-vue';
4
4
  import pluginVueA11y from 'eslint-plugin-vuejs-accessibility';
5
5
  import globals from 'globals';
package/eslint.config.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ // eslint-disable-next-line import/no-useless-path-segments
1
2
  import rules from './configurations/base/index.js';
2
3
 
3
4
  export default [
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.15",
4
+ "version": "3.0.17",
5
5
  "main": "index.js",
6
6
  "author": "Juuso Piikkilä",
7
7
  "license": "MIT",