@jslint-org/jslint 2026.2.28 → 2026.6.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 +43 -4
- package/README.md +297 -177
- package/jslint.mjs +1546 -1154
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,49 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
# Todo
|
|
4
|
-
-
|
|
5
|
-
- jslint -
|
|
6
|
-
- jslint -
|
|
7
|
-
- jslint -
|
|
4
|
+
- jslint-ci - Automate linting of shell-scripts with shellcheck.
|
|
5
|
+
- jslint-ecma - Expand ES2015-feature-support for es-module-export-statement.
|
|
6
|
+
- jslint - Relax warning expected_line_break_a_b for ternary-operator inside template-literal.
|
|
7
|
+
- jslint - Add ability to auto-fix whitespace.
|
|
8
|
+
- jslint - bugfix - Fix false-positive Unused-variable when variable is used in function argument-default.
|
|
9
|
+
- jslint - Add html and css linting back into jslint.
|
|
10
|
+
- jslint - Add new warning requiring paren around plus-separated concatenations.
|
|
11
|
+
- jslint - Try to improve parser to be able to parse jquery.js without stopping.
|
|
12
|
+
|
|
13
|
+
# v2026.6.30
|
|
14
|
+
- jslint-ecma - Update README.md, documenting supported ES2015+ features.
|
|
15
|
+
- jslint-ecma - Unify ES2015-destructure-logic into function prefix_destructure().
|
|
16
|
+
- jslint-ci - Add shell-function shGithubPrUpdatePrxxx() to auto-update 'PR-xxx' placeholder to next sequential github issue/pull number.
|
|
17
|
+
- jslint-ci - Rename shell-functions shGitPullrequestXxx() to shGithubPrXxx().
|
|
18
|
+
- jslint - Update warning infix_in to recommend Object.hasOwn() over hasOwnProperty().
|
|
19
|
+
- jslint-ecma - Add ES2025-feature RegExp Modifiers.
|
|
20
|
+
- jslint-ecma - Add ES2022-feature RegExp Match Indices.
|
|
21
|
+
- jslint-ecma - Add ES2021-feature Logical Assignment Operators.
|
|
22
|
+
- jslint-ecma - Add ES2027-feature Temporal.
|
|
23
|
+
- jslint-ecma - Expand ES2015-feature-support for destructuring.
|
|
24
|
+
- jslint-ecma - Add ES2018-feature Rest/Spread Properties.
|
|
25
|
+
- jslint-ecma - Add ES2018-feature s (dotall) flag for regular expressions.
|
|
26
|
+
- jslint-ecma - Expand ES2015-feature-support for es-module-import-statement.
|
|
27
|
+
- jslint-ecma - Add ES2023-feature ShadowRealm to global-scope.
|
|
28
|
+
- jslint-ecma - Add ES2024-feature .isWellFormed(), .toWellFormed() for literal string.
|
|
29
|
+
- jslint-ecma - Add ES2022-feature .at() for literal string/array.
|
|
30
|
+
- jslint-ecma - Add ES2025-feature Float16Array to global-scope.
|
|
31
|
+
- jslint-ecma - Relax warning for ES2025-feature RegExp.escape().
|
|
32
|
+
- jslint-ecma - Add ES2021-feature WeakRef to global-scope.
|
|
33
|
+
- jslint-ecma - Update ES2015-feature arrow, to continue parsing unwrapped-form with warning, instead of stopping.
|
|
34
|
+
- jslint - Relax warning on multiline-method-chaining.
|
|
35
|
+
- jslint - Replace all non-return 'stop(...);' with 'return stop(...)'.
|
|
36
|
+
- jslint - Unify ES2018-syntax-spread-operator with function prefix_ellipsis().
|
|
37
|
+
- jslint - Add ES2018-syntax for object-literal-spread-operator.
|
|
38
|
+
- jslint - Add ES2025-syntax 'import ... with {...}'.
|
|
39
|
+
- jslint - Allow more methods to be called on literal strings and arrays; make allowed methods for . and ?. consistent.
|
|
40
|
+
|
|
41
|
+
# v2026.4.30
|
|
42
|
+
- github-ci - Pin various github-runner-os to stable/lts version.
|
|
43
|
+
- jslint-ci - Update file jslint_ci.sh, replacing deprecated url.parse(...).pathname with new URL(...).pathname.
|
|
44
|
+
- jslint-ci - Update shell-function shGitPullrequestCleanup() to allow squash-and-merge pull-request.
|
|
45
|
+
- ci - Update file .github/workflows/ci.yml with hook to run on pull-request.
|
|
46
|
+
- jslint-ci - Update shell-function shLintPython().
|
|
8
47
|
|
|
9
48
|
# v2026.2.28
|
|
10
49
|
- jslint - Update warning to suggest Boolean(...) instead of !! for ternary-expression.
|