@jslint-org/jslint 2026.2.28 → 2026.4.30
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/CHANGELOG.md +8 -0
- package/README.md +2 -2
- package/jslint.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
# Todo
|
|
4
|
+
- jslint - bugfix - Fix false-positive Unused-variable when variable is used in function argument-default.
|
|
4
5
|
- doc - document supported/unsupported es6+ features
|
|
5
6
|
- jslint - add html and css linting back into jslint.
|
|
6
7
|
- jslint - add new warning requiring paren around plus-separated concatenations.
|
|
7
8
|
- jslint - try to improve parser to be able to parse jquery.js without stopping.
|
|
8
9
|
|
|
10
|
+
# v2026.4.30
|
|
11
|
+
- github-ci - Pin various github-runner-os to stable/lts version.
|
|
12
|
+
- jslint-ci - Update file jslint_ci.sh, replacing deprecated url.parse(...).pathname with new URL(...).pathname.
|
|
13
|
+
- jslint-ci - Update shell-function shGitPullrequestCleanup() to allow squash-and-merge pull-request.
|
|
14
|
+
- ci - Update file .github/workflows/ci.yml with hook to run on pull-request.
|
|
15
|
+
- jslint-ci - Update shell-function shLintPython().
|
|
16
|
+
|
|
9
17
|
# v2026.2.28
|
|
10
18
|
- jslint - Update warning to suggest Boolean(...) instead of !! for ternary-expression.
|
|
11
19
|
- ci - Update shell-function shCiBase() to check npm-version-support, before running npm-pkg-fix.
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Douglas Crockford <douglas@crockford.com>
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
# Status
|
|
6
|
-
| Branch | [master<br>(v2026.
|
|
6
|
+
| Branch | [master<br>(v2026.4.30)](https://github.com/jslint-org/jslint/tree/master) | [beta<br>(Web Demo)](https://github.com/jslint-org/jslint/tree/beta) | [alpha<br>(Development)](https://github.com/jslint-org/jslint/tree/alpha) |
|
|
7
7
|
|--:|:--:|:--:|:--:|
|
|
8
8
|
| CI | [](https://github.com/jslint-org/jslint/actions?query=branch%3Amaster) | [](https://github.com/jslint-org/jslint/actions?query=branch%3Abeta) | [](https://github.com/jslint-org/jslint/actions?query=branch%3Aalpha) |
|
|
9
9
|
| Coverage | [](https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/index.html) | [](https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/index.html) | [](https://jslint-org.github.io/jslint/branch-alpha/.artifact/coverage/index.html) |
|
|
@@ -996,7 +996,7 @@ This PR will additionally:
|
|
|
996
996
|
- `git push upstream alpha -f`
|
|
997
997
|
- verify ci-success for upstream-branch-alpha
|
|
998
998
|
- https://github.com/jslint-org/jslint/actions
|
|
999
|
-
- goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2026.
|
|
999
|
+
- goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2026.4.30
|
|
1000
1000
|
- click `Create pull request`
|
|
1001
1001
|
- input `Add a title` with: `# v20yy.mm.dd`
|
|
1002
1002
|
- input `Add a description` with:
|
package/jslint.mjs
CHANGED
|
@@ -163,7 +163,7 @@ let jslint_charset_ascii = (
|
|
|
163
163
|
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
|
|
164
164
|
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
|
|
165
165
|
);
|
|
166
|
-
let jslint_edition = "v2026.
|
|
166
|
+
let jslint_edition = "v2026.4.30";
|
|
167
167
|
let jslint_export; // The jslint object to be exported.
|
|
168
168
|
let jslint_fudge = 1; // Fudge starting line and starting
|
|
169
169
|
// ... column to 1.
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"default": "./jslint_wrapper_cjs.cjs",
|
|
12
12
|
"import": "./jslint.mjs"
|
|
13
13
|
},
|
|
14
|
-
"fileCount":
|
|
14
|
+
"fileCount": 33,
|
|
15
15
|
"keywords": [
|
|
16
16
|
"coverage-report",
|
|
17
17
|
"javascript",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"shCiArtifactUpload": 1,
|
|
36
36
|
"shCiPublishNpm": 1,
|
|
37
37
|
"type": "module",
|
|
38
|
-
"version": "2026.
|
|
38
|
+
"version": "2026.4.30"
|
|
39
39
|
}
|