@jslint-org/jslint 2023.6.21 → 2023.8.20
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 +4 -0
- package/LICENSE +0 -2
- package/README.md +1 -1
- package/jslint.mjs +1 -3
- package/jslint_wrapper_cjs.cjs +0 -2
- package/jslint_wrapper_vscode.js +0 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
- jslint - add new warning requiring paren around plus-separated concatenations.
|
|
8
8
|
- jslint - try to improve parser to be able to parse jquery.js without stopping.
|
|
9
9
|
|
|
10
|
+
# v2023.8.20
|
|
11
|
+
- ci - Remove ci for nodejs-v19, and add ci for nodejs-v20.
|
|
12
|
+
- ci - Remove broken-links to unlicense.org, failing http-link-check.
|
|
13
|
+
|
|
10
14
|
# v2023.6.21
|
|
11
15
|
- doc - Update docs in README.md.
|
|
12
16
|
|
package/LICENSE
CHANGED
|
@@ -20,5 +20,3 @@ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
20
20
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
21
21
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
22
|
OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
-
|
|
24
|
-
For more information, please refer to <https://unlicense.org/>
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Douglas Crockford <douglas@crockford.com>
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
# Status
|
|
6
|
-
| Branch | [master<br>(v2023.
|
|
6
|
+
| Branch | [master<br>(v2023.8.20)](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) |
|
package/jslint.mjs
CHANGED
|
@@ -25,8 +25,6 @@
|
|
|
25
25
|
// OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
26
26
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
27
27
|
// OTHER DEALINGS IN THE SOFTWARE.
|
|
28
|
-
//
|
|
29
|
-
// For more information, please refer to <https://unlicense.org/>
|
|
30
28
|
|
|
31
29
|
|
|
32
30
|
// jslint(source, option_dict, global_list) is a function that takes 3
|
|
@@ -165,7 +163,7 @@ let jslint_charset_ascii = (
|
|
|
165
163
|
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
|
|
166
164
|
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
|
|
167
165
|
);
|
|
168
|
-
let jslint_edition = "v2023.
|
|
166
|
+
let jslint_edition = "v2023.8.20";
|
|
169
167
|
let jslint_export; // The jslint object to be exported.
|
|
170
168
|
let jslint_fudge = 1; // Fudge starting line and starting
|
|
171
169
|
// ... column to 1.
|
package/jslint_wrapper_cjs.cjs
CHANGED
|
@@ -22,8 +22,6 @@
|
|
|
22
22
|
// OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
23
23
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
24
24
|
// OTHER DEALINGS IN THE SOFTWARE.
|
|
25
|
-
//
|
|
26
|
-
// For more information, please refer to <https://unlicense.org/>
|
|
27
25
|
|
|
28
26
|
|
|
29
27
|
/*jslint beta, node*/
|
package/jslint_wrapper_vscode.js
CHANGED
|
@@ -22,8 +22,6 @@
|
|
|
22
22
|
// OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
23
23
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
24
24
|
// OTHER DEALINGS IN THE SOFTWARE.
|
|
25
|
-
//
|
|
26
|
-
// For more information, please refer to <https://unlicense.org/>
|
|
27
25
|
|
|
28
26
|
|
|
29
27
|
/*jslint beta, node*/
|
package/package.json
CHANGED