@eslinted/core 3.2.0 → 3.4.0-rc.4
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +7 -9
- package/eslint.config.js +0 -3
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
|
-
"_schemaVersion": "20.17.
|
2
|
+
"_schemaVersion": "20.17.7",
|
3
3
|
"name": "@eslinted/core",
|
4
|
-
"version": "3.
|
4
|
+
"version": "3.4.0-rc.4",
|
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",
|
@@ -38,10 +36,10 @@
|
|
38
36
|
"build:svelte:compile": "vite build",
|
39
37
|
"build:svelte:prelint": "npm run ln src/**/*.svelte",
|
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 --no-error-on-unmatched-pattern %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