@xylabs/eslint-config-flat 7.0.0-rc.26 → 7.0.0-rc.27
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/neutral/index.d.ts +11 -23
- package/dist/node/index.d.ts +11 -23
- package/package.json +3 -3
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,23 +1,11 @@
|
|
|
1
|
-
import { Linter } from 'eslint';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
declare const sonarConfig: Linter.Config;
|
|
14
|
-
|
|
15
|
-
declare const typescriptConfig: Linter.Config;
|
|
16
|
-
|
|
17
|
-
declare const unicornConfig: Linter.Config;
|
|
18
|
-
|
|
19
|
-
declare const workspacesConfig: Linter.Config;
|
|
20
|
-
|
|
21
|
-
declare const config: Linter.Config[];
|
|
22
|
-
|
|
23
|
-
export { config, ignores, importConfig, json5Config, jsonConfig, jsoncConfig, rulesConfig, sonarConfig, typescriptConfig, unicornConfig, workspacesConfig };
|
|
1
|
+
import type { Linter } from 'eslint';
|
|
2
|
+
export declare const config: Linter.Config[];
|
|
3
|
+
export * from './ignores.ts';
|
|
4
|
+
export { importConfig } from './import/index.ts';
|
|
5
|
+
export { json5Config, jsoncConfig, jsonConfig, } from './json/index.ts';
|
|
6
|
+
export { rulesConfig } from './rules/index.ts';
|
|
7
|
+
export { sonarConfig } from './sonar/index.ts';
|
|
8
|
+
export { typescriptConfig } from './typescript/index.ts';
|
|
9
|
+
export { unicornConfig } from './unicorn/index.ts';
|
|
10
|
+
export { workspacesConfig } from './workspaces/index.ts';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.d.ts
CHANGED
|
@@ -1,23 +1,11 @@
|
|
|
1
|
-
import { Linter } from 'eslint';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
declare const sonarConfig: Linter.Config;
|
|
14
|
-
|
|
15
|
-
declare const typescriptConfig: Linter.Config;
|
|
16
|
-
|
|
17
|
-
declare const unicornConfig: Linter.Config;
|
|
18
|
-
|
|
19
|
-
declare const workspacesConfig: Linter.Config;
|
|
20
|
-
|
|
21
|
-
declare const config: Linter.Config[];
|
|
22
|
-
|
|
23
|
-
export { config, ignores, importConfig, json5Config, jsonConfig, jsoncConfig, rulesConfig, sonarConfig, typescriptConfig, unicornConfig, workspacesConfig };
|
|
1
|
+
import type { Linter } from 'eslint';
|
|
2
|
+
export declare const config: Linter.Config[];
|
|
3
|
+
export * from './ignores.ts';
|
|
4
|
+
export { importConfig } from './import/index.ts';
|
|
5
|
+
export { json5Config, jsoncConfig, jsonConfig, } from './json/index.ts';
|
|
6
|
+
export { rulesConfig } from './rules/index.ts';
|
|
7
|
+
export { sonarConfig } from './sonar/index.ts';
|
|
8
|
+
export { typescriptConfig } from './typescript/index.ts';
|
|
9
|
+
export { unicornConfig } from './unicorn/index.ts';
|
|
10
|
+
export { workspacesConfig } from './workspaces/index.ts';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@xylabs/eslint-config-flat",
|
|
4
|
-
"version": "7.0.0-rc.
|
|
4
|
+
"version": "7.0.0-rc.27",
|
|
5
5
|
"description": "ESLint Config used throughout XY Labs TypeScript/JavaScript libraries and react projects",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"xylabs",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/eslint-plugin-markdown": "^2.0.2",
|
|
57
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
58
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
57
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
|
|
58
|
+
"@xylabs/tsconfig": "^7.0.0-rc.27",
|
|
59
59
|
"eslint": "^9.31.0",
|
|
60
60
|
"typescript": "^5.8.3"
|
|
61
61
|
},
|