@eslinted/core 3.1.5 → 3.1.7

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/SECURITY.md ADDED
@@ -0,0 +1,9 @@
1
+ # Security Policy
2
+
3
+ ## Reporting a Vulnerability
4
+
5
+ This repository participates in GitHub private vulnerability reporting.
6
+
7
+ [__⚑ Report Vulnerability__](./../../security/advisories/new)
8
+
9
+ Thank you your dedication to safety.
@@ -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
- export type { Files, Rules, Plugins, Parsers, };
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,GACR,CAAC"}
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_schemaVersion": "20.15.0",
3
3
  "name": "@eslinted/core",
4
- "version": "3.1.5",
4
+ "version": "3.1.7",
5
5
  "description": "Core ESLint flat config factory npm package `linted`.",
6
6
  "keywords": [],
7
7
  "license": "MIT",
@@ -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
  };