linted 22.1.1-rc.1 → 22.1.1-rc.10
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
import type { Input } from "@eslinted/core";
|
2
|
-
export default function (extensions?: Input["extensions"]): readonly [import("@eslinted/core/dist/interface/output/common").
|
2
|
+
export default function (extensions?: Input["extensions"]): readonly [import("@eslinted/core/dist/interface/output/common").CommonSettings, import("@eslinted/core/dist/interface/output/common").CommonPlugins<import("@eslinted/core").Plugins>, import("@eslinted/core/dist/interface/output/common").CommonIgnores, ...(import("@eslinted/core/dist/interface/output/scope").ScopeSettings<"js" | "ts" | "svelte" | "mocha" | "html" | "json" | "jsonc" | "yml"> | import("@eslinted/core/dist/interface/output/scope").ScopeRules<"js" | "ts" | "svelte" | "mocha" | "html" | "json" | "jsonc" | "yml">)[]];
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import Core from "@eslinted/core";
|
2
2
|
import plugins from "./plugins.js";
|
3
3
|
import parsers from "./parsers.js";
|
4
|
-
import * as defaults from "@eslinted/
|
4
|
+
import * as defaults from "@eslinted/defaults";
|
5
5
|
export default function (extensions = {}) {
|
6
6
|
try {
|
7
7
|
return Core({
|
package/dist/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,IAAI,MAAM,gBAAgB,CAAC;AAClC,OAAO,OAAO,MAAM,WAAW,CAAC;AAChC,OAAO,OAAO,MAAM,WAAW,CAAC;AAChC,OAAO,KAAK,QAAQ,MAAM,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,IAAI,MAAM,gBAAgB,CAAC;AAClC,OAAO,OAAO,MAAM,WAAW,CAAC;AAChC,OAAO,OAAO,MAAM,WAAW,CAAC;AAChC,OAAO,KAAK,QAAQ,MAAM,oBAAoB,CAAC;AAE/C,MAAM,CAAC,OAAO,WAAW,aAAkC,EAAE;IAC3D,IAAI,CAAC;QACH,OAAO,IAAI,CAAC;YACV,OAAO,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;YAC7B,QAAQ;YACR,UAAU;SACX,CAAC,CAAC;IACL,CAAC;IACD,OAAO,CAAC,EAAE,CAAC;QACT,MAAM,IAAI,KAAK,CAAC,YAAY,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC;IAC9C,CAAC;AACH,CAAC"}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"_schemaVersion": "22.11.0",
|
3
3
|
"name": "linted",
|
4
|
-
"version": "22.1.1-rc.
|
4
|
+
"version": "22.1.1-rc.10",
|
5
5
|
"description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
|
6
6
|
"keywords": [
|
7
7
|
"eslint",
|
@@ -62,8 +62,8 @@
|
|
62
62
|
}
|
63
63
|
},
|
64
64
|
"dependencies": {
|
65
|
-
"@eslinted/
|
66
|
-
"@eslinted/
|
65
|
+
"@eslinted/core": "13.4.0",
|
66
|
+
"@eslinted/defaults": "3.0.0",
|
67
67
|
"@html-eslint/eslint-plugin": "0.27.0",
|
68
68
|
"@html-eslint/parser": "0.27.0",
|
69
69
|
"@stylistic/eslint-plugin": "2.10.1",
|
package/src/index.ts
CHANGED
@@ -2,7 +2,7 @@ import type { Input } from "@eslinted/core";
|
|
2
2
|
import Core from "@eslinted/core";
|
3
3
|
import plugins from "./plugins";
|
4
4
|
import parsers from "./parsers";
|
5
|
-
import * as defaults from "@eslinted/
|
5
|
+
import * as defaults from "@eslinted/defaults";
|
6
6
|
|
7
7
|
export default function (extensions: Input["extensions"] = {}) {
|
8
8
|
try {
|