@jslint-org/jslint 2023.8.20 → 2023.10.24

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,12 @@
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.10.24
11
+ - jslint - bugfix - Update file jslint_wrapper_vim.vim to fix broken vim-link when linting shell-files.
12
+ - ci - add custom-shell-ci hooks to script jslint_ci.sh:
13
+ shCiPublishNpmCustom()
14
+ shCiPublishPypiCustom()
15
+
10
16
  # v2023.8.20
11
17
  - ci - Remove ci for nodejs-v19, and add ci for nodejs-v20.
12
18
  - ci - Remove broken-links to unlicense.org, failing http-link-check.
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.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) |
6
+ | Branch | [master<br>(v2023.10.24)](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
@@ -163,7 +163,7 @@ let jslint_charset_ascii = (
163
163
  + "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
164
164
  + "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
165
165
  );
166
- let jslint_edition = "v2023.8.20";
166
+ let jslint_edition = "v2023.10.24";
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.
@@ -279,7 +279,7 @@ async function assertErrorThrownAsync(asyncFunc, regexp) {
279
279
  }
280
280
  assertOrThrow(err, "No error thrown.");
281
281
  assertOrThrow(
282
- regexp === undefined || new RegExp(regexp).test(err.message),
282
+ !regexp || new RegExp(regexp).test(err.message),
283
283
  err
284
284
  );
285
285
  }
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "bugs": {
6
6
  "url": "https://github.com/jslint-org/jslint/issues"
7
7
  },
8
- "counter": 7,
8
+ "counter": 0,
9
9
  "description": "JSLint, The JavaScript Code Quality and Coverage Tool",
10
10
  "exports": {
11
11
  "default": "./jslint_wrapper_cjs.cjs",
@@ -33,7 +33,7 @@
33
33
  "test2": "sh jslint_ci.sh shCiBase"
34
34
  },
35
35
  "shCiArtifactUpload": 1,
36
- "shCiNpmPublish": 1,
36
+ "shCiPublishNpm": 1,
37
37
  "type": "module",
38
- "version": "2023.8.20"
38
+ "version": "2023.10.24"
39
39
  }