@eslinted/core 3.1.5 → 3.1.7
Sign up to get free protection for your applications and to get access to all the features.
package/SECURITY.md
ADDED
@@ -4,5 +4,11 @@ import type * as Files from "./files/index.js";
|
|
4
4
|
import type * as Rules from "./rules/index.js";
|
5
5
|
type Files = Files.Files;
|
6
6
|
type Rules = Rules.Rules;
|
7
|
-
|
7
|
+
interface Input {
|
8
|
+
files: Files;
|
9
|
+
rules: Rules;
|
10
|
+
plugins: Plugins;
|
11
|
+
parsers: Parsers;
|
12
|
+
}
|
13
|
+
export type { Files, Rules, Plugins, Parsers, Input, Input as default, };
|
8
14
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/boundary/input/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,KAAK,KAAK,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,KAAK,KAAK,MAAM,kBAAkB,CAAC;AAE/C,KAAK,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;AACzB,KAAK,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;AAEzB,YAAY,EACV,KAAK,EACL,KAAK,EACL,OAAO,EACP,OAAO,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/boundary/input/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,KAAK,KAAK,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,KAAK,KAAK,MAAM,kBAAkB,CAAC;AAE/C,KAAK,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;AACzB,KAAK,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;AAEzB,UAAU,KAAK;IACb,KAAK,EAAE,KAAK,CAAC;IACb,KAAK,EAAE,KAAK,CAAC;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,YAAY,EACV,KAAK,EACL,KAAK,EACL,OAAO,EACP,OAAO,EACP,KAAK,EACL,KAAK,IAAI,OAAO,GACjB,CAAC"}
|
package/package.json
CHANGED
@@ -6,9 +6,18 @@ import type * as Rules from "./rules/index.js";
|
|
6
6
|
type Files = Files.Files;
|
7
7
|
type Rules = Rules.Rules;
|
8
8
|
|
9
|
+
interface Input {
|
10
|
+
files: Files;
|
11
|
+
rules: Rules;
|
12
|
+
plugins: Plugins;
|
13
|
+
parsers: Parsers;
|
14
|
+
}
|
15
|
+
|
9
16
|
export type {
|
10
17
|
Files,
|
11
18
|
Rules,
|
12
19
|
Plugins,
|
13
20
|
Parsers,
|
21
|
+
Input,
|
22
|
+
Input as default,
|
14
23
|
};
|