@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 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.21)](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) |
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 | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jslint-org/jslint/actions?query=branch%3Amaster) | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=beta)](https://github.com/jslint-org/jslint/actions?query=branch%3Abeta) | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=alpha)](https://github.com/jslint-org/jslint/actions?query=branch%3Aalpha) |
9
9
  | Coverage | [![coverage](https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/coverage_badge.svg)](https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/index.html) | [![coverage](https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/coverage_badge.svg)](https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/index.html) | [![coverage](https://jslint-org.github.io/jslint/branch-alpha/.artifact/coverage/coverage_badge.svg)](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.6.21";
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.
@@ -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*/
@@ -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
@@ -35,5 +35,5 @@
35
35
  "shCiArtifactUpload": 1,
36
36
  "shCiNpmPublish": 1,
37
37
  "type": "module",
38
- "version": "2023.6.21"
38
+ "version": "2023.8.20"
39
39
  }