@d-kuehn/eslint-config 3.15.5 → 3.15.7

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/README.md CHANGED
@@ -77,7 +77,7 @@ export default combine(
77
77
 
78
78
  | Configuration | Purpose | Targeted Files |
79
79
  | ---------------------------------------------------------------------------------------------------------------------- | --------------------------- | --------------------------------------------------- |
80
- | [vitest() v1.1.18](https://github.com/vitest-dev/eslint-plugin-vitest) | Vitest test rules | `**/*.{spec,test,bench,benchmark}.?([cm])[jt]s?(x)` |
80
+ | [vitest() v1.1.17](https://github.com/vitest-dev/eslint-plugin-vitest) | Vitest test rules | `**/*.{spec,test,bench,benchmark}.?([cm])[jt]s?(x)` |
81
81
  | [playwright() v2.1.0](https://github.com/playwright-community/eslint-plugin-playwright) | Playwright E2E test rules | `tests/e2e/**`, `**/*.e2e.?([cm])[jt]s?(x)` |
82
82
  | [testingLibrary() v7.1.1](https://github.com/testing-library/eslint-plugin-testing-library) | Testing Library with Vue.js | `**/*.{spec,test,bench,benchmark}.?([cm])[jt]s?(x)` |
83
83
 
package/dist/index.js CHANGED
@@ -1054,6 +1054,20 @@ var vue = async (options = {}) => {
1054
1054
  }
1055
1055
  ],
1056
1056
  "vue/brace-style": ["error", "1tbs"],
1057
+ // enforce consistent use of comma
1058
+ "vue/comma-dangle": [
1059
+ "error",
1060
+ {
1061
+ arrays: "always",
1062
+ enums: "always",
1063
+ exports: "always",
1064
+ functions: "always-multiline",
1065
+ generics: "always",
1066
+ imports: "always",
1067
+ objects: "always",
1068
+ tuples: "always"
1069
+ }
1070
+ ],
1057
1071
  "vue/component-api-style": ["error", ["script-setup"]],
1058
1072
  "vue/component-name-in-template-casing": [
1059
1073
  "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-kuehn/eslint-config",
3
- "version": "3.15.5",
3
+ "version": "3.15.7",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -31,7 +31,7 @@
31
31
  "@eslint/js": "9.17.0",
32
32
  "@stylistic/eslint-plugin": "2.12.1",
33
33
  "@typescript-eslint/parser": "8.18.1",
34
- "@vitest/eslint-plugin": "1.1.18",
34
+ "@vitest/eslint-plugin": "1.1.17",
35
35
  "@vue/eslint-config-typescript": "14.1.4",
36
36
  "eslint": "9.17.0",
37
37
  "eslint-flat-config-utils": "0.4.0",