@html-validate/eslint-config-vue 9.4.0 → 9.5.0

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.
Files changed (2) hide show
  1. package/index.mjs +4 -4
  2. package/package.json +3 -3
package/index.mjs CHANGED
@@ -41,12 +41,12 @@ export default defineConfig({
41
41
 
42
42
  "@typescript-eslint/no-object-literal-type-assertion": ["off"],
43
43
 
44
- "sonarjs/different-types-comparison": "off", // does not play well with vue
44
+ "sonarjs/different-types-comparison": "off", // does not play well with Vue.js
45
45
 
46
- /* documentation for vue components does not adhere with tsdoc syntax */
46
+ /* documentation for Vue.js components does not adhere with tsdoc syntax */
47
47
  "tsdoc/syntax": "off",
48
48
 
49
- /* for Vue components we use PascalCase instead of kebab-case */
49
+ /* for Vue.js components we use PascalCase instead of kebab-case */
50
50
  "unicorn/filename-case": ["error", { case: "pascalCase", checkDirectories: false }],
51
51
 
52
52
  /* this rule warns about the order of the top-level tags */
@@ -86,7 +86,7 @@ export default defineConfig({
86
86
  /* disallows unused declared props */
87
87
  "vue/no-unused-properties": "error",
88
88
 
89
- /* extended version of original object-shorthand for vue sfc templates */
89
+ /* extended version of original object-shorthand for Vue.js sfc templates */
90
90
  "vue/object-shorthand": "error",
91
91
 
92
92
  /* prefer useTemplateRef() over ref() with same name */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/eslint-config-vue",
3
- "version": "9.4.0",
3
+ "version": "9.5.0",
4
4
  "description": "Eslint sharable config used by the various HTML-validate packages",
5
5
  "keywords": [
6
6
  "eslint",
@@ -31,7 +31,7 @@
31
31
  "dependencies": {
32
32
  "eslint-config-prettier": "10.1.8",
33
33
  "eslint-plugin-vue": "10.9.2",
34
- "typescript-eslint": "8.61.0"
34
+ "typescript-eslint": "8.61.1"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "eslint": "^10.0.0"
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "4309d02ab6d6084eaf89662780fd3e869997e111"
46
+ "gitHead": "bcdd8a68ca8a4c57fa4b2b27dad0e86e7f9e7c50"
47
47
  }