@sxzz/eslint-config 7.3.1 → 7.3.2
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/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -980,13 +980,13 @@ function sxzz(options = {}, ...userConfigs) {
|
|
|
980
980
|
yml(),
|
|
981
981
|
presetJsonc()
|
|
982
982
|
];
|
|
983
|
+
if (enableBaseline) configs$1.push(baseline());
|
|
983
984
|
if (enableVue) configs$1.push(vue());
|
|
984
985
|
if (enableMarkdown) configs$1.push(markdown());
|
|
985
986
|
if (enableUnocss) configs$1.push(unocss());
|
|
986
987
|
if (enablePrettier) configs$1.push(prettier());
|
|
987
988
|
if (enableCommand) configs$1.push(command());
|
|
988
989
|
if (enablePnpm) configs$1.push(pnpm());
|
|
989
|
-
if (enableBaseline) configs$1.push(baseline());
|
|
990
990
|
configs$1.push(specialCases());
|
|
991
991
|
return new FlatConfigComposer(...configs$1, ...userConfigs);
|
|
992
992
|
}
|