@coderwyd/eslint-config 4.10.2 → 4.10.3

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.2";
12
+ var version = "4.10.3";
13
13
  var devDependencies = {
14
14
  "@eslint-react/eslint-plugin": "catalog:peer",
15
15
  "@eslint/config-inspector": "catalog:dev",
package/dist/index.mjs CHANGED
@@ -646,12 +646,13 @@ async function pnpm() {
646
646
 
647
647
  //#endregion
648
648
  //#region src/configs/prettier.ts
649
- const { rules: eslintRules } = prettierRules;
649
+ const rules = prettierRules.rules;
650
+ delete rules["vue/html-self-closing"];
650
651
  function prettier() {
651
652
  return [{
652
653
  name: "coderwyd/prettier/rules",
653
654
  rules: {
654
- ...eslintRules,
655
+ ...rules,
655
656
  "arrow-body-style": "off",
656
657
  "prefer-arrow-callback": "off"
657
658
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coderwyd/eslint-config",
3
3
  "type": "module",
4
- "version": "4.10.2",
4
+ "version": "4.10.3",
5
5
  "description": "Donny's ESLint config",
6
6
  "author": "Donny Wang <donny526@outlook.com> (https://github.com/coderwyd/)",
7
7
  "license": "MIT",