dlzn-ui 1.26.0 → 1.27.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.
package/node/eslint-config.d.ts
CHANGED
package/node/eslint-config.mjs
CHANGED
|
@@ -3,7 +3,8 @@ import antfu, { perfectionist } from "@antfu/eslint-config";
|
|
|
3
3
|
import perfectionist$1 from "eslint-plugin-perfectionist";
|
|
4
4
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
|
5
5
|
//#region node/eslint-config.ts
|
|
6
|
-
var
|
|
6
|
+
var perfectionistConfig = await perfectionist({});
|
|
7
|
+
var eslintConfig = await antfu({
|
|
7
8
|
formatters: {
|
|
8
9
|
css: true,
|
|
9
10
|
html: true,
|
|
@@ -191,6 +192,6 @@ var eslintConfig = perfectionist({}).then((perfectionistConfig) => antfu({
|
|
|
191
192
|
"**/*.jsonc"
|
|
192
193
|
],
|
|
193
194
|
...eslintPluginPrettierRecommended
|
|
194
|
-
})
|
|
195
|
+
});
|
|
195
196
|
//#endregion
|
|
196
197
|
export { eslintConfig as default };
|