@coderwyd/eslint-config 4.10.4 → 4.10.5

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/dist/cli.mjs CHANGED
@@ -9,7 +9,7 @@ import prompts from "prompts";
9
9
  import { execSync } from "node:child_process";
10
10
 
11
11
  //#region package.json
12
- var version = "4.10.4";
12
+ var version = "4.10.5";
13
13
  var devDependencies = {
14
14
  "@eslint-react/eslint-plugin": "catalog:peer",
15
15
  "@eslint/config-inspector": "catalog:dev",
package/dist/index.mjs CHANGED
@@ -1672,7 +1672,15 @@ async function vue(options = {}) {
1672
1672
  "vue/dot-location": ["error", "property"],
1673
1673
  "vue/dot-notation": ["error", { allowKeywords: true }],
1674
1674
  "vue/eqeqeq": ["error", "smart"],
1675
- "vue/html-quotes": ["error", "double"],
1675
+ "vue/html-self-closing": ["error", {
1676
+ html: {
1677
+ component: "always",
1678
+ normal: "always",
1679
+ void: "any"
1680
+ },
1681
+ math: "always",
1682
+ svg: "always"
1683
+ }],
1676
1684
  "vue/max-attributes-per-line": "off",
1677
1685
  "vue/multi-word-component-names": "off",
1678
1686
  "vue/no-constant-condition": "warn",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coderwyd/eslint-config",
3
3
  "type": "module",
4
- "version": "4.10.4",
4
+ "version": "4.10.5",
5
5
  "description": "Donny's ESLint config",
6
6
  "author": "Donny Wang <donny526@outlook.com> (https://github.com/coderwyd/)",
7
7
  "license": "MIT",