@eslinted/core 19.0.0-rc.3 → 19.0.0-rc.5

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.
Files changed (62) hide show
  1. package/dist/factory/index.d.ts +3 -3
  2. package/dist/index.d.ts +1 -3
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js.map +1 -1
  5. package/dist/interface/config/index.d.ts +21 -0
  6. package/dist/interface/config/index.d.ts.map +1 -0
  7. package/dist/interface/config/index.js +2 -0
  8. package/dist/interface/config/index.js.map +1 -0
  9. package/dist/interface/config/rule.d.ts +6 -0
  10. package/dist/interface/config/rule.d.ts.map +1 -0
  11. package/dist/interface/config/rule.js +2 -0
  12. package/dist/interface/config/rule.js.map +1 -0
  13. package/dist/interface/index.d.ts +4 -0
  14. package/dist/interface/index.d.ts.map +1 -0
  15. package/dist/interface/index.js +2 -0
  16. package/dist/interface/index.js.map +1 -0
  17. package/dist/interface/input/configuration/defaults.d.ts +11 -0
  18. package/dist/interface/input/configuration/defaults.d.ts.map +1 -0
  19. package/dist/interface/input/configuration/defaults.js +2 -0
  20. package/dist/interface/input/configuration/defaults.js.map +1 -0
  21. package/dist/interface/input/configuration/extensions.d.ts +12 -0
  22. package/dist/interface/input/configuration/extensions.d.ts.map +1 -0
  23. package/dist/interface/input/configuration/extensions.js +2 -0
  24. package/dist/interface/input/configuration/extensions.js.map +1 -0
  25. package/dist/interface/input/configuration/index.d.ts +7 -0
  26. package/dist/interface/input/configuration/index.d.ts.map +1 -0
  27. package/dist/interface/input/configuration/index.js +2 -0
  28. package/dist/interface/input/configuration/index.js.map +1 -0
  29. package/dist/interface/input/imports.d.ts +5 -0
  30. package/dist/interface/input/imports.d.ts.map +1 -0
  31. package/dist/interface/input/imports.js +2 -0
  32. package/dist/interface/input/imports.js.map +1 -0
  33. package/dist/interface/input/index.d.ts +7 -0
  34. package/dist/interface/input/index.d.ts.map +1 -0
  35. package/dist/interface/input/index.js +2 -0
  36. package/dist/interface/input/index.js.map +1 -0
  37. package/dist/scope/dependencies/index.d.ts +3 -0
  38. package/dist/scope/dependencies/index.d.ts.map +1 -0
  39. package/dist/scope/dependencies/index.js +2 -0
  40. package/dist/scope/dependencies/index.js.map +1 -0
  41. package/dist/scope/dependencies/parsers.d.ts +2 -0
  42. package/dist/scope/dependencies/parsers.d.ts.map +1 -0
  43. package/dist/scope/dependencies/parsers.js +2 -0
  44. package/dist/scope/dependencies/parsers.js.map +1 -0
  45. package/dist/scope/dependencies/plugins.d.ts +2 -0
  46. package/dist/scope/dependencies/plugins.d.ts.map +1 -0
  47. package/dist/scope/dependencies/plugins.js +2 -0
  48. package/dist/scope/dependencies/plugins.js.map +1 -0
  49. package/dist/scope/index.d.ts +1 -1
  50. package/package.json +1 -1
  51. package/src/index.ts +0 -2
  52. /package/src/interface/config/{index.d.ts → index.ts} +0 -0
  53. /package/src/interface/config/{rule.d.ts → rule.ts} +0 -0
  54. /package/src/interface/{index.d.ts → index.ts} +0 -0
  55. /package/src/interface/input/configuration/{defaults.d.ts → defaults.ts} +0 -0
  56. /package/src/interface/input/configuration/{extensions.d.ts → extensions.ts} +0 -0
  57. /package/src/interface/input/configuration/{index.d.ts → index.ts} +0 -0
  58. /package/src/interface/input/{imports.d.ts → imports.ts} +0 -0
  59. /package/src/interface/input/{index.d.ts → index.ts} +0 -0
  60. /package/src/scope/dependencies/{index.d.ts → index.ts} +0 -0
  61. /package/src/scope/dependencies/{parsers.d.ts → parsers.ts} +0 -0
  62. /package/src/scope/dependencies/{plugins.d.ts → plugins.ts} +0 -0
@@ -1,4 +1,4 @@
1
- import type { Input } from "../interface";
1
+ import type { Input } from "../interface/index.js";
2
2
  import type { scopes, tree as Tree, Dependencies } from "../scope/index.js";
3
3
  export declare class Factory {
4
4
  parsers: Input<Dependencies.Plugins, Dependencies.Parsers, typeof scopes[number]>["imports"]["parsers"];
@@ -24,7 +24,7 @@ export declare class Factory {
24
24
  ignores: Record<"mocha" | "svelte" | "css" | "json" | "jsonc" | "yml" | "ts" | "html" | "js" | "jsoncc" | "*", string[]>;
25
25
  rules: Record<"mocha" | "svelte" | "css" | "json" | "jsonc" | "yml" | "ts" | "html" | "js" | "jsoncc", {
26
26
  id: string;
27
- rules: import("../index.js").Config["rules"];
27
+ rules: import("../interface/index.js").Config["rules"];
28
28
  }[]>;
29
29
  };
30
30
  constructor(tree: typeof Tree, parsers: Input<Dependencies.Plugins, Dependencies.Parsers, typeof scopes[number]>["imports"]["parsers"], defaults: Input<Dependencies.Plugins, Dependencies.Parsers, typeof scopes[number]>["configuration"]["defaults"], { "*": globalExtension, ...scopeExtensions }?: Input<Dependencies.Plugins, Dependencies.Parsers, typeof scopes[number]>["configuration"]["extensions"]);
@@ -49,7 +49,7 @@ export declare class Factory {
49
49
  name: `linted/${string}/`;
50
50
  files: string[];
51
51
  ignores: string[];
52
- rules: import("../interface/config/rule").Rules;
52
+ rules: import("../interface/config/rule.js").Rules;
53
53
  } | {
54
54
  processor?: string;
55
55
  name: `linted/${string}/`;
package/dist/index.d.ts CHANGED
@@ -1,7 +1,5 @@
1
1
  import { scopes } from "./scope/index.js";
2
2
  import type { Dependencies } from "./scope/index.js";
3
- import type { Input } from "./interface";
4
- export type * from "./scope/index.js";
5
- export type * from "./interface";
3
+ import type { Input } from "./interface/index.js";
6
4
  export default function ({ imports: { plugins, parsers, }, configuration: { defaults, extensions, }, }: Input<Dependencies.Plugins, Dependencies.Parsers, typeof scopes[number]>): unknown[];
7
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,MAAM,EAEP,MAAM,SAAS,CAAC;AACjB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,KAAK,EACV,KAAK,EAEN,MAAM,aAAa,CAAC;AAErB,mBAAmB,SAAS,CAAC;AAC7B,mBAAmB,aAAa,CAAC;AACjC,MAAM,CAAC,OAAO,WACZ,EACE,OAAO,EAAE,EACP,OAAO,EACP,OAAO,GACR,EACD,aAAa,EAAE,EACb,QAAQ,EACR,UAAU,GACX,GACF,EAAE,KAAK,CACN,YAAY,CAAC,OAAO,EACpB,YAAY,CAAC,OAAO,EACpB,OAAO,MAAM,CAAC,MAAM,CAAC,CACtB,aA4BF"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,MAAM,EAEP,MAAM,SAAS,CAAC;AACjB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,KAAK,EACV,KAAK,EAEN,MAAM,aAAa,CAAC;AAErB,MAAM,CAAC,OAAO,WACZ,EACE,OAAO,EAAE,EACP,OAAO,EACP,OAAO,GACR,EACD,aAAa,EAAE,EACb,QAAQ,EACR,UAAU,GACX,GACF,EAAE,KAAK,CACN,YAAY,CAAC,OAAO,EACpB,YAAY,CAAC,OAAO,EACpB,OAAO,MAAM,CAAC,MAAM,CAAC,CACtB,aA4BF"}
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EACL,MAAM,EACN,IAAI,GACL,MAAM,SAAS,CAAC;AASjB,MAAM,CAAC,OAAO,WACZ,EACE,OAAO,EAAE,EACP,OAAO,EACP,OAAO,GACR,EACD,aAAa,EAAE,EACb,QAAQ,EACR,UAAU,GACX,GAKF;IAED,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,OAAO,CACzB,IAAI,EACJ,OAAO,EACP,QAAQ,EACR,UAAU,CACX,CAAC;QAEF,OAAO;YACL;gBACE,IAAI,EAAE,mBAAmB;gBACzB,OAAO;aACR;YACD,GAAG,OAAO,CAAC,OAAO;YAClB,GAAG,MAAM;iBACN,OAAO,CACN,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAC9B;SAC0B,CAAC;IAClC,CAAC;IACD,OAAO,CAAC,EAAE,CAAC;QACT,MAAM,IAAI,KAAK,CACb,eAAe,EACf,EAAE,KAAK,EAAE,CAAC,EAAE,CACb,CAAC;IACJ,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EACL,MAAM,EACN,IAAI,GACL,MAAM,SAAS,CAAC;AAOjB,MAAM,CAAC,OAAO,WACZ,EACE,OAAO,EAAE,EACP,OAAO,EACP,OAAO,GACR,EACD,aAAa,EAAE,EACb,QAAQ,EACR,UAAU,GACX,GAKF;IAED,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,OAAO,CACzB,IAAI,EACJ,OAAO,EACP,QAAQ,EACR,UAAU,CACX,CAAC;QAEF,OAAO;YACL;gBACE,IAAI,EAAE,mBAAmB;gBACzB,OAAO;aACR;YACD,GAAG,OAAO,CAAC,OAAO;YAClB,GAAG,MAAM;iBACN,OAAO,CACN,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAC9B;SAC0B,CAAC;IAClC,CAAC;IACD,OAAO,CAAC,EAAE,CAAC;QACT,MAAM,IAAI,KAAK,CACb,eAAe,EACf,EAAE,KAAK,EAAE,CAAC,EAAE,CACb,CAAC;IACJ,CAAC;AACH,CAAC"}
@@ -0,0 +1,21 @@
1
+ import type * as Rule from "./rule.js";
2
+ export interface Config {
3
+ name: `linted/${string}`;
4
+ plugins: Record<string, unknown>;
5
+ files: string[];
6
+ ignores: string[];
7
+ rules: Rule.Rules;
8
+ linterOptions: {
9
+ noInlineConfig: boolean;
10
+ reportUnusedDisableDirectives: "error" | "warn" | "off";
11
+ };
12
+ languageOptions: {
13
+ sourceType: "module" | "script";
14
+ ecmaVersion: "latest" | 3 | 5 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024;
15
+ };
16
+ basePath?: string;
17
+ processor?: string;
18
+ language?: string;
19
+ settings?: Record<string, unknown>;
20
+ }
21
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/interface/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,IAAI,MAAM,QAAQ,CAAC;AAEpC,MAAM,WAAW,MAAM;IACrB,IAAI,EAAE,UAAU,MAAM,EAAE,CAAC;IACzB,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC;IAClB,aAAa,EAAE;QACb,cAAc,EAAE,OAAO,CAAC;QACxB,6BAA6B,EACzB,OAAO,GACP,MAAM,GACN,KAAK,CACR;KACF,CAAC;IACF,eAAe,EAAE;QACf,UAAU,EACN,QAAQ,GACR,QAAQ,CACX;QACD,WAAW,EACP,QAAQ,GACR,CAAC,GACD,CAAC,GACD,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,CACP;KACF,CAAC;IACF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACpC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/interface/config/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export type State = ("error" | "warn" | "off");
2
+ export type Rules = Record<string, State | readonly [
3
+ State,
4
+ ...unknown[]
5
+ ]>;
6
+ //# sourceMappingURL=rule.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rule.d.ts","sourceRoot":"","sources":["../../../src/interface/config/rule.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,KAAK,GAAG,CAChB,OAAO,GACP,MAAM,GACN,KAAK,CACR,CAAC;AACF,MAAM,MAAM,KAAK,GAAG,MAAM,CACxB,MAAM,EACJ,KAAK,GACL,SAAS;IACT,KAAK;IACL,GAAG,OAAO,EAAE;CACb,CACF,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=rule.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rule.js","sourceRoot":"","sources":["../../../src/interface/config/rule.ts"],"names":[],"mappings":""}
@@ -0,0 +1,4 @@
1
+ export type * from "./input/index.js";
2
+ export type * from "./output";
3
+ export type * from "./config/index.js";
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interface/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,mBAAmB,UAAU,CAAC;AAC9B,mBAAmB,UAAU,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interface/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,11 @@
1
+ import type { Config } from "../../config/index.js";
2
+ export interface Defaults<Scope extends string> {
3
+ settings: (Config["linterOptions"] & Config["languageOptions"]);
4
+ files: Record<Scope, string[]>;
5
+ ignores: Record<("*" | Scope), string[]>;
6
+ rules: Record<Scope, {
7
+ id: string;
8
+ rules: Config["rules"];
9
+ }[]>;
10
+ }
11
+ //# sourceMappingURL=defaults.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"defaults.d.ts","sourceRoot":"","sources":["../../../../src/interface/input/configuration/defaults.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAE3C,MAAM,WAAW,QAAQ,CACvB,KAAK,SAAS,MAAM;IAEpB,QAAQ,EAAE,CACN,MAAM,CAAC,eAAe,CAAC,GACvB,MAAM,CAAC,iBAAiB,CAAC,CAC5B,CAAC;IACF,KAAK,EAAE,MAAM,CACX,KAAK,EACL,MAAM,EAAE,CACT,CAAC;IACF,OAAO,EAAE,MAAM,CACb,CACI,GAAG,GACH,KAAK,CACR,EACD,MAAM,EAAE,CACT,CAAC;IACF,KAAK,EAAE,MAAM,CACX,KAAK,EACL;QACE,EAAE,EAAE,MAAM,CAAC;QACX,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;KACxB,EAAE,CACJ,CAAC;CACH"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=defaults.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"defaults.js","sourceRoot":"","sources":["../../../../src/interface/input/configuration/defaults.ts"],"names":[],"mappings":""}
@@ -0,0 +1,12 @@
1
+ import type { Config } from "../../config/index.js";
2
+ export type Extensions<Scope extends string> = ({
3
+ "*"?: Partial<Config["linterOptions"] & Config["languageOptions"]> & {
4
+ ignores?: string[];
5
+ override?: boolean;
6
+ };
7
+ } & Partial<Record<Scope, {
8
+ files?: string[];
9
+ ignores?: string[];
10
+ rules?: Config["rules"];
11
+ }>>);
12
+ //# sourceMappingURL=extensions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extensions.d.ts","sourceRoot":"","sources":["../../../../src/interface/input/configuration/extensions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAE3C,MAAM,MAAM,UAAU,CACpB,KAAK,SAAS,MAAM,IAClB,CACA;IACA,GAAG,CAAC,EAAE,OAAO,CACT,MAAM,CAAC,eAAe,CAAC,GACvB,MAAM,CAAC,iBAAiB,CAAC,CAC5B,GAAG;QACF,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;QACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;KACpB,CAAC;CACH,GACC,OAAO,CACP,MAAM,CACJ,KAAK,EACL;IACE,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;CACzB,CACF,CACF,CACF,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=extensions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extensions.js","sourceRoot":"","sources":["../../../../src/interface/input/configuration/extensions.ts"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import type { Defaults } from "./defaults.js";
2
+ import type { Extensions } from "./extensions.js";
3
+ export interface Configuration<Scope extends string> {
4
+ defaults: Defaults<Scope>;
5
+ extensions: Extensions<Scope>;
6
+ }
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/interface/input/configuration/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,WAAW,aAAa,CAC5B,KAAK,SAAS,MAAM;IAEpB,QAAQ,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC1B,UAAU,EAAE,UAAU,CAAC,KAAK,CAAC,CAAC;CAC/B"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/interface/input/configuration/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ export interface Imports<Plugins extends string, Parsers extends string> {
2
+ plugins: Record<Plugins, unknown>;
3
+ parsers: Record<Parsers, unknown>;
4
+ }
5
+ //# sourceMappingURL=imports.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"imports.d.ts","sourceRoot":"","sources":["../../../src/interface/input/imports.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO,CACtB,OAAO,SAAS,MAAM,EACtB,OAAO,SAAS,MAAM;IAEtB,OAAO,EAAE,MAAM,CACb,OAAO,EACP,OAAO,CACR,CAAC;IACF,OAAO,EAAE,MAAM,CACb,OAAO,EACP,OAAO,CACR,CAAC;CACH"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=imports.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"imports.js","sourceRoot":"","sources":["../../../src/interface/input/imports.ts"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import type { Imports } from "./imports.js";
2
+ import type { Configuration } from "./configuration/index.js";
3
+ export interface Input<Plugins extends string, Parsers extends string, Scope extends string> {
4
+ imports: Imports<Plugins, Parsers>;
5
+ configuration: Configuration<Scope>;
6
+ }
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/interface/input/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAErD,MAAM,WAAW,KAAK,CACpB,OAAO,SAAS,MAAM,EACtB,OAAO,SAAS,MAAM,EACtB,KAAK,SAAS,MAAM;IAEpB,OAAO,EAAE,OAAO,CACd,OAAO,EACP,OAAO,CACR,CAAC;IACF,aAAa,EAAE,aAAa,CAC1B,KAAK,CACN,CAAC;CACH"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/interface/input/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export type { Plugins } from "./plugins.js";
2
+ export type { Parsers } from "./parsers.js";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/scope/dependencies/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACzC,YAAY,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/scope/dependencies/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export type Parsers = ("ts" | "svelte" | "html" | "yml");
2
+ //# sourceMappingURL=parsers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parsers.d.ts","sourceRoot":"","sources":["../../../src/scope/dependencies/parsers.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,OAAO,GAAG,CAClB,IAAI,GACJ,QAAQ,GACR,MAAM,GACN,KAAK,CACR,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=parsers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parsers.js","sourceRoot":"","sources":["../../../src/scope/dependencies/parsers.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export type Plugins = ("@stylistic" | "@typescript-eslint" | "mocha" | "chai-friendly" | "chai-expect" | "svelte" | "@html-eslint" | "css" | "json" | "jsonc" | "yml");
2
+ //# sourceMappingURL=plugins.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../../src/scope/dependencies/plugins.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,OAAO,GAAG,CAClB,YAAY,GACZ,oBAAoB,GACpB,OAAO,GACP,eAAe,GACf,aAAa,GACb,QAAQ,GACR,cAAc,GACd,KAAK,GACL,MAAM,GACN,OAAO,GACP,KAAK,CACR,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=plugins.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugins.js","sourceRoot":"","sources":["../../../src/scope/dependencies/plugins.ts"],"names":[],"mappings":""}
@@ -1,4 +1,4 @@
1
- export type * as Dependencies from "./dependencies";
1
+ export type * as Dependencies from "./dependencies/index.js";
2
2
  export { tree } from "./tree/index.js";
3
3
  export declare const scopes: readonly [
4
4
  "js",
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "$schema": "https://json.schemastore.org/package",
4
4
  "$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
5
5
  "name": "@eslinted/core",
6
- "version": "19.0.0-rc.3",
6
+ "version": "19.0.0-rc.5",
7
7
  "repository": "github:jimmy-zhening-luo/linted-core",
8
8
  "private": false,
9
9
  "engineStrict": true,
package/src/index.ts CHANGED
@@ -9,8 +9,6 @@ import type {
9
9
  Output,
10
10
  } from "./interface";
11
11
 
12
- export type * from "./scope";
13
- export type * from "./interface";
14
12
  export default function (
15
13
  {
16
14
  imports: {
File without changes
File without changes
File without changes
File without changes
File without changes