@ziloen/eslint-config 0.0.110 → 0.1.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/README.md +30 -1
- package/dist/index.cjs +772 -0
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +731 -0
- package/package.json +39 -15
- package/index.js +0 -7
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FlatESLintConfigItem } from 'eslint-define-config';
|
|
2
|
+
export { FlatESLintConfig, FlatESLintConfigItem, defineFlatConfig } from 'eslint-define-config';
|
|
3
|
+
|
|
4
|
+
declare const javascript: FlatESLintConfigItem[];
|
|
5
|
+
|
|
6
|
+
declare const typescript: FlatESLintConfigItem[];
|
|
7
|
+
|
|
8
|
+
declare const vue: FlatESLintConfigItem[];
|
|
9
|
+
|
|
10
|
+
declare const react: FlatESLintConfigItem[];
|
|
11
|
+
|
|
12
|
+
declare const format: FlatESLintConfigItem[];
|
|
13
|
+
|
|
14
|
+
export { format, javascript, react, typescript, vue };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FlatESLintConfigItem } from 'eslint-define-config';
|
|
2
|
+
export { FlatESLintConfig, FlatESLintConfigItem, defineFlatConfig } from 'eslint-define-config';
|
|
3
|
+
|
|
4
|
+
declare const javascript: FlatESLintConfigItem[];
|
|
5
|
+
|
|
6
|
+
declare const typescript: FlatESLintConfigItem[];
|
|
7
|
+
|
|
8
|
+
declare const vue: FlatESLintConfigItem[];
|
|
9
|
+
|
|
10
|
+
declare const react: FlatESLintConfigItem[];
|
|
11
|
+
|
|
12
|
+
declare const format: FlatESLintConfigItem[];
|
|
13
|
+
|
|
14
|
+
export { format, javascript, react, typescript, vue };
|