@eslinted/core 4.0.5-rc.0 → 4.0.5-rc.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -11
- package/src/factory/files.ts +2 -2
- package/src/factory/options/option/index.ts +3 -3
- package/src/factory/ruleset/index.ts +2 -2
- package/src/factory/ruleset/rule.ts +1 -1
- package/src/factory/rulesets.ts +2 -2
- package/src/index.ts +3 -0
- package/src/inputs/files/base.ts +1 -1
- package/src/inputs/imports/parsers.ts +1 -1
- package/src/inputs/rules/overrides.ts +1 -1
- package/src/inputs/rules/preset.ts +1 -1
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"_schemaVersion": "20.18.0-core.0",
|
3
3
|
"name": "@eslinted/core",
|
4
|
-
"version": "4.0.5-rc.
|
4
|
+
"version": "4.0.5-rc.1",
|
5
5
|
"description": "Core ESLint flat config factory npm package `linted`.",
|
6
6
|
"keywords": [],
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted-core",
|
@@ -17,16 +17,6 @@
|
|
17
17
|
".": {
|
18
18
|
"types": "./dist/index.d.ts",
|
19
19
|
"default": "./dist/index.js"
|
20
|
-
},
|
21
|
-
"./input": {
|
22
|
-
"types": "./dist/input.d.ts"
|
23
|
-
},
|
24
|
-
"./scopes": {
|
25
|
-
"types": "./dist/scopes.d.ts",
|
26
|
-
"default": "./dist/scopes.js"
|
27
|
-
},
|
28
|
-
"./output": {
|
29
|
-
"types": "./dist/output.d.ts"
|
30
20
|
}
|
31
21
|
},
|
32
22
|
"config": {
|
package/src/factory/files.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import type { Scope } from "@eslinted/core
|
2
|
-
import type { Input } from "@eslinted/core
|
1
|
+
import type { Scope } from "@eslinted/core";
|
2
|
+
import type { Input } from "@eslinted/core";
|
3
3
|
|
4
4
|
export class Files {
|
5
5
|
constructor(private readonly input: Input["files"]) {}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import type { Input } from "@eslinted/core
|
2
|
-
import type { Scope } from "@eslinted/core
|
3
|
-
import type { Output } from "@eslinted/core
|
1
|
+
import type { Input } from "@eslinted/core";
|
2
|
+
import type { Scope } from "@eslinted/core";
|
3
|
+
import type { Output } from "@eslinted/core";
|
4
4
|
import type { Ruleset } from "../../ruleset";
|
5
5
|
import type {
|
6
6
|
OptionTemplate,
|
package/src/factory/rulesets.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import type { Input } from "@eslinted/core
|
2
|
-
import type { Scope } from "@eslinted/core
|
1
|
+
import type { Input } from "@eslinted/core";
|
2
|
+
import type { Scope } from "@eslinted/core";
|
3
3
|
import { Ruleset, Rule } from "./ruleset";
|
4
4
|
|
5
5
|
export class Rulesets {
|
package/src/index.ts
CHANGED
package/src/inputs/files/base.ts
CHANGED