linted 23.2.0-rc.0 → 23.2.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.spec.js +3 -6
- package/dist/index.spec.js.map +1 -1
- package/package.json +2 -2
- package/src/index.spec.ts +3 -6
package/dist/index.spec.js
CHANGED
@@ -9,13 +9,10 @@ describe("Linted", function () {
|
|
9
9
|
});
|
10
10
|
});
|
11
11
|
describe("output", function () {
|
12
|
-
it("is
|
12
|
+
it("is a non-empty array", function () {
|
13
13
|
expect(configs)
|
14
|
-
.an("array")
|
15
|
-
|
16
|
-
it("non-empty", function () {
|
17
|
-
expect(configs)
|
18
|
-
.lengthOf.above(1);
|
14
|
+
.an("array")
|
15
|
+
.not.empty;
|
19
16
|
});
|
20
17
|
});
|
21
18
|
});
|
package/dist/index.spec.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.spec.js","sourceRoot":"","sources":["../src/index.spec.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAC9B,OAAO,MAAM,MAAM,GAAG,CAAC;AAEvB,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC;AAEzB,QAAQ,CAAC,QAAQ,EAAE;IACjB,QAAQ,CAAC,OAAO,EAAE;QAChB,EAAE,CAAC,eAAe,EAAE;YAClB,MAAM,CAAC,MAAM,CAAC;iBACX,CAAC,CAAC,UAAU,CAAC,CAAC;QACnB,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IACH,QAAQ,CAAC,QAAQ,EAAE;QACjB,EAAE,CAAC,
|
1
|
+
{"version":3,"file":"index.spec.js","sourceRoot":"","sources":["../src/index.spec.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAC9B,OAAO,MAAM,MAAM,GAAG,CAAC;AAEvB,MAAM,OAAO,GAAG,MAAM,EAAE,CAAC;AAEzB,QAAQ,CAAC,QAAQ,EAAE;IACjB,QAAQ,CAAC,OAAO,EAAE;QAChB,EAAE,CAAC,eAAe,EAAE;YAClB,MAAM,CAAC,MAAM,CAAC;iBACX,CAAC,CAAC,UAAU,CAAC,CAAC;QACnB,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IACH,QAAQ,CAAC,QAAQ,EAAE;QACjB,EAAE,CAAC,sBAAsB,EAAE;YACzB,MAAM,CAAC,OAAO,CAAC;iBACZ,EAAE,CAAC,OAAO,CAAC;iBACX,GAAG,CAAC,KAAK,CAAC;QACf,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"_schemaVersion": "22.11.0",
|
3
3
|
"name": "linted",
|
4
|
-
"version": "23.2.0
|
4
|
+
"version": "23.2.0",
|
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,7 +62,7 @@
|
|
62
62
|
}
|
63
63
|
},
|
64
64
|
"dependencies": {
|
65
|
-
"@eslinted/core": "14.0.0
|
65
|
+
"@eslinted/core": "14.0.0",
|
66
66
|
"@eslinted/defaults": "4.1.0",
|
67
67
|
"@html-eslint/eslint-plugin": "0.27.0",
|
68
68
|
"@html-eslint/parser": "0.27.0",
|
package/src/index.spec.ts
CHANGED
@@ -11,13 +11,10 @@ describe("Linted", function () {
|
|
11
11
|
});
|
12
12
|
});
|
13
13
|
describe("output", function () {
|
14
|
-
it("is
|
14
|
+
it("is a non-empty array", function () {
|
15
15
|
expect(configs)
|
16
|
-
.an("array")
|
17
|
-
|
18
|
-
it("non-empty", function () {
|
19
|
-
expect(configs)
|
20
|
-
.lengthOf.above(1);
|
16
|
+
.an("array")
|
17
|
+
.not.empty;
|
21
18
|
});
|
22
19
|
});
|
23
20
|
});
|