@eslinted/core 3.2.0 → 3.4.0-rc.3
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +8 -10
- package/eslint.config.js +0 -3
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
|
-
"_schemaVersion": "20.17.
|
2
|
+
"_schemaVersion": "20.17.3",
|
3
3
|
"name": "@eslinted/core",
|
4
|
-
"version": "3.
|
4
|
+
"version": "3.4.0-rc.3",
|
5
5
|
"description": "Core ESLint flat config factory npm package `linted`.",
|
6
6
|
"keywords": [],
|
7
7
|
"license": "MIT",
|
@@ -25,10 +25,8 @@
|
|
25
25
|
"globals": "^15.9.0"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
|
-
"eslint": "~9.9.1",
|
29
|
-
"linted": "16.4.0-rc.12",
|
30
28
|
"npm-run-all": "^4.1.5",
|
31
|
-
"typescript": "^5.
|
29
|
+
"typescript": "^5.6.2"
|
32
30
|
},
|
33
31
|
"scripts": {
|
34
32
|
"build": "run-s \"build:{1}:*\" lint:built -- ts",
|
@@ -36,12 +34,12 @@
|
|
36
34
|
"build:svelte:sync": "svelte-kit sync",
|
37
35
|
"build:svelte:check": "svelte-check --tsconfig ./tsconfig.json",
|
38
36
|
"build:svelte:compile": "vite build",
|
39
|
-
"build:svelte:prelint": "npm run ln src/**/*.svelte",
|
37
|
+
"build:svelte:prelint": "npm run ln src/**/*.svelte || echo \"Svelte prelint step failed.\"",
|
40
38
|
"lint": "npm run build",
|
41
|
-
"lint:built": "run-s lint:built:*",
|
42
|
-
"lint:built:configs": "npm run ln {*,.github/workflows/*}.{json,jsonc,js,ts,yml}",
|
43
|
-
"lint:built:source": "npm run ln src/**/*.{js,ts,html}",
|
44
|
-
"ln": "eslint --cache --fix",
|
39
|
+
"lint:built": "run-s -c lint:built:*",
|
40
|
+
"lint:built:configs": "npm run ln --files={*,.github/workflows/*}.{json,jsonc,js,ts,yml}",
|
41
|
+
"lint:built:source": "npm run ln --files=src/**/*.{js,ts,html}",
|
42
|
+
"ln": "eslint --cache --fix %npm_config_files% || echo \"No linter installed.\"",
|
45
43
|
"pretest": "npm run build",
|
46
44
|
"test": "",
|
47
45
|
"start": "vite preview || node .",
|
package/eslint.config.js
DELETED