Skip to content

Commit

Permalink
Merge pull request #342 from kaizhu256/v2021.7.24
Browse files Browse the repository at this point in the history
# v2021.7.24
  • Loading branch information
kaizhu256 committed Jul 24, 2021
2 parents 7aaf4fa + 5cfd439 commit a0304fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- node - after node-v14 is deprecated, remove shell-code `export "NODE_OPTIONS=--unhandled-rejections=strict"`.
- vim - add vim plugin.

# v2021.7.1-beta
# v2021.7.24
- bugfix - fix jslint not warning about function-redefinition when function is defined inside a call.
- bugfix - fix website crashing when linting pure json-object.
- ci - fix race-condition when inlining css.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Douglas Crockford <douglas@crockford.com>


# Status
| Branch | [master<br>(v2021.6.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) |
| Branch | [master<br>(v2021.7.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) |
|--:|:--:|:--:|:--:|
| 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) |
| Coverage | [![coverage](https://jslint-org.github.io/jslint/branch-master/.build/coverage/coverage-badge.svg)](https://jslint-org.github.io/jslint/branch-master/.build/coverage/index.html) | [![coverage](https://jslint-org.github.io/jslint/branch-beta/.build/coverage/coverage-badge.svg)](https://jslint-org.github.io/jslint/branch-beta/.build/coverage/index.html) | [![coverage](https://jslint-org.github.io/jslint/branch-alpha/.build/coverage/coverage-badge.svg)](https://jslint-org.github.io/jslint/branch-alpha/.build/coverage/index.html) |
Expand Down
4 changes: 2 additions & 2 deletions browser.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -873,10 +873,8 @@ function jslint_ui_onresize() {
if (!mode_debug) {
editor.setValue(String(`
#!/usr/bin/env node
/*jslint browser, node*/
/*global caches, indexedDb*/ //jslint-quiet
import https from "https";
import jslint from \u0022./jslint.mjs\u0022;
Expand All @@ -886,6 +884,8 @@ import jslint from \u0022./jslint.mjs\u0022;
eval("console.log(\\"hello world\\");"); //jslint-quiet
eval("console.log(\\"hello world\\");");
// Optional directives.
// .... /*jslint beta*/ .......... Enable experimental warnings.
// .... /*jslint bitwise*/ ....... Allow bitwise operators.
Expand Down
2 changes: 1 addition & 1 deletion jslint.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ let jslint_charset_ascii = (
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
);
let jslint_edition = "v2021.7.1-beta";
let jslint_edition = "v2021.7.24";
let jslint_export; // The jslint object to be exported.
let jslint_fudge = 1; // Fudge starting line and starting column to 1.
let jslint_import_meta_url = ""; // import.meta.url used by cli.
Expand Down

0 comments on commit a0304fe

Please sign in to comment.