linted 26.1.0 → 26.1.1
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/package.json +4 -9
- package/src/index.ts +1 -1
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
|
-
"$template": "22.13.
|
2
|
+
"$template": "22.13.7",
|
3
3
|
"name": "linted",
|
4
|
-
"version": "26.1.
|
4
|
+
"version": "26.1.1",
|
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
|
"repository": "github:jimmy-zhening-luo/linted",
|
7
7
|
"license": "MIT",
|
@@ -29,8 +29,8 @@
|
|
29
29
|
}
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
|
-
"@eslinted/core": "15.2.
|
33
|
-
"@eslinted/defaults": "5.1.
|
32
|
+
"@eslinted/core": "15.2.14",
|
33
|
+
"@eslinted/defaults": "5.1.1",
|
34
34
|
"@html-eslint/eslint-plugin": "0.34.0",
|
35
35
|
"@html-eslint/parser": "0.34.0",
|
36
36
|
"@stylistic/eslint-plugin": "3.0.1",
|
@@ -100,11 +100,6 @@
|
|
100
100
|
"test": "",
|
101
101
|
"test:ts": "mocha",
|
102
102
|
"test:svelte": "",
|
103
|
-
"dev": "run-os",
|
104
|
-
"dev:default": "npm run dev+os:$npm_package_config_language",
|
105
|
-
"dev:windows": "npm run dev+os:%npm_package_config_language%",
|
106
|
-
"dev+os:ts": "npm start",
|
107
|
-
"dev+os:svelte": "vite dev",
|
108
103
|
"start": "run-os",
|
109
104
|
"start:default": "npm run start+os:$npm_package_config_language",
|
110
105
|
"start:windows": "npm run start+os:%npm_package_config_language%",
|
package/src/index.ts
CHANGED
@@ -2,7 +2,7 @@ import Core, { type Input } from "@eslinted/core";
|
|
2
2
|
import * as defaults from "@eslinted/defaults";
|
3
3
|
import { plugins } from "./plugins";
|
4
4
|
import { parsers } from "./parsers";
|
5
|
-
// import type {
|
5
|
+
// import type { Linter } from "eslint";
|
6
6
|
|
7
7
|
export default function (extensions: Input["extensions"] = {}): readonly unknown[] {
|
8
8
|
try {
|