@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 +1 -1
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
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.
|
|
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
|
|
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
|
-
...
|
|
655
|
+
...rules,
|
|
655
656
|
"arrow-body-style": "off",
|
|
656
657
|
"prefer-arrow-callback": "off"
|
|
657
658
|
}
|
package/package.json
CHANGED