linted 16.13.1-rc.4 → 16.13.1-rc.5
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +15 -14
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
|
-
"_schemaVersion": "20.17.10
|
2
|
+
"_schemaVersion": "20.17.10",
|
3
3
|
"name": "linted",
|
4
|
-
"version": "16.13.1-rc.
|
4
|
+
"version": "16.13.1-rc.5",
|
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",
|
@@ -94,20 +94,21 @@
|
|
94
94
|
"compile:svelte:sync": "svelte-kit sync",
|
95
95
|
"compile:svelte:check": "svelte-check --tsconfig ./tsconfig.json",
|
96
96
|
"compile:svelte:compile": "vite build",
|
97
|
-
"fix:
|
98
|
-
"fix:
|
99
|
-
"fix:
|
100
|
-
"fix:
|
97
|
+
"fix:true": "run-s \"fix:dist:{1}\" --",
|
98
|
+
"fix:false": "echo \"Fix skipped (fix=false)\"",
|
99
|
+
"fix:dist:ts": "ts-add-js-extension --dir=dist",
|
100
|
+
"fix:dist:svelte": "echo \"Fix skipped for Svelte (handled by SvelteKit)\"",
|
101
|
+
"li": "eslint --cache --fix",
|
101
102
|
"lint": "npm run build",
|
102
|
-
"lint:false": "(npm run lint:true) || (echo \"Skipped linting (lint=false)\")",
|
103
103
|
"lint:true": "run-os",
|
104
|
-
"lint:true:default": "run-s lint:
|
105
|
-
"lint:true:windows": "run-s lint:
|
106
|
-
"lint:
|
107
|
-
"lint:
|
108
|
-
"lint:scope:
|
109
|
-
"lint:scope:
|
110
|
-
"
|
104
|
+
"lint:true:default": "run-s lint:scope:global:* \"lint:scope:$npm_package_config_language\"",
|
105
|
+
"lint:true:windows": "run-s lint:scope:global:* \"lint:scope:%npm_package_config_language%\"",
|
106
|
+
"lint:false": "(npm run lint:true) || (echo \"Skipped linting (lint=false)\")",
|
107
|
+
"lint:scope:global:configs": "npm run li -- {*,.github/**/*}.{json,jsonc,yml,yaml,js,cjs,mjs,ts,cts,mts}",
|
108
|
+
"lint:scope:global:code": "npm run li -- {src,tests,static,typings}/**/*.{html,js,cjs,mjs,ts,cts,mts}",
|
109
|
+
"lint:scope:ts": "exit 0",
|
110
|
+
"lint:scope:svelte": "npm run li -- {src,tests,static}/**/*.svelte",
|
111
|
+
"postbuild": "echo \"Build (+lint) complete.\"",
|
111
112
|
"pretest": "npm run build",
|
112
113
|
"test": "",
|
113
114
|
"start": "run-os",
|