@html-validate/eslint-config-vue 6.16.0 → 6.17.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 +3 -0
  2. package/package.json +2 -2
package/index.mjs CHANGED
@@ -46,6 +46,9 @@ export default defineConfig({
46
46
  /* documentation for vue 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 */
50
+ "unicorn/filename-case": ["error", { case: "pascalCase" }],
51
+
49
52
  /* this rule warns about the order of the top-level tags */
50
53
  "vue/block-order": ["error", { order: ["script", "template", "style"] }],
51
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/eslint-config-vue",
3
- "version": "6.16.0",
3
+ "version": "6.17.0",
4
4
  "description": "Eslint sharable config used by the various HTML-validate packages",
5
5
  "keywords": [
6
6
  "eslint",
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "eca3fda53d932f0237a955cdd1b970b2b12d213d"
46
+ "gitHead": "d649b633cedd3360959151dfd6f54b6126145d49"
47
47
  }