@saasmakers/eslint 0.1.53 → 0.1.55
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/eslint.config.cjs +16 -22671
- package/dist/eslint.config.d.cts +20 -3
- package/dist/eslint.config.d.mts +20 -3
- package/dist/eslint.config.d.ts +20 -3
- package/dist/eslint.config.mjs +11 -22642
- package/dist/index.cjs +14121 -13
- package/dist/index.d.cts +5189 -2
- package/dist/index.d.mts +5189 -2
- package/dist/index.d.ts +5189 -2
- package/dist/index.mjs +14114 -13
- package/package.json +15 -39
package/dist/eslint.config.d.cts
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
|
-
import
|
|
1
|
+
import antfu from '@antfu/eslint-config';
|
|
2
|
+
import storybook from 'eslint-plugin-storybook';
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
var eslint_config = antfu(
|
|
5
|
+
// Antfu ESLint config
|
|
6
|
+
{
|
|
7
|
+
typescript: true,
|
|
8
|
+
unocss: true,
|
|
9
|
+
vue: {
|
|
10
|
+
a11y: true
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
...storybook.configs["flat/recommended"],
|
|
14
|
+
// Override rules defined by Antfu ESLint config
|
|
15
|
+
{
|
|
16
|
+
rules: {
|
|
17
|
+
"pnpm/yaml-enforce-settings": "off"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
);
|
|
4
21
|
|
|
5
|
-
export =
|
|
22
|
+
export = eslint_config;
|
package/dist/eslint.config.d.mts
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
|
-
import
|
|
1
|
+
import antfu from '@antfu/eslint-config';
|
|
2
|
+
import storybook from 'eslint-plugin-storybook';
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
var eslint_config = antfu(
|
|
5
|
+
// Antfu ESLint config
|
|
6
|
+
{
|
|
7
|
+
typescript: true,
|
|
8
|
+
unocss: true,
|
|
9
|
+
vue: {
|
|
10
|
+
a11y: true
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
...storybook.configs["flat/recommended"],
|
|
14
|
+
// Override rules defined by Antfu ESLint config
|
|
15
|
+
{
|
|
16
|
+
rules: {
|
|
17
|
+
"pnpm/yaml-enforce-settings": "off"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
);
|
|
4
21
|
|
|
5
|
-
export {
|
|
22
|
+
export { eslint_config as default };
|
package/dist/eslint.config.d.ts
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
|
-
import
|
|
1
|
+
import antfu from '@antfu/eslint-config';
|
|
2
|
+
import storybook from 'eslint-plugin-storybook';
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
var eslint_config = antfu(
|
|
5
|
+
// Antfu ESLint config
|
|
6
|
+
{
|
|
7
|
+
typescript: true,
|
|
8
|
+
unocss: true,
|
|
9
|
+
vue: {
|
|
10
|
+
a11y: true
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
...storybook.configs["flat/recommended"],
|
|
14
|
+
// Override rules defined by Antfu ESLint config
|
|
15
|
+
{
|
|
16
|
+
rules: {
|
|
17
|
+
"pnpm/yaml-enforce-settings": "off"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
);
|
|
4
21
|
|
|
5
|
-
export =
|
|
22
|
+
export = eslint_config;
|