Skip to content

Commit c78c808

Browse files
authored
## v2021.6.3 (#311)
- breaking-change - hardcode `const fudge = 1` - breaking-change - remove little-used-feature allowing jslint to accept array-of-strings as source b/c internal lines-object has been changed from array-of-strings to array-of-objects. - doc - add svg changelog. - doc - add svg package-listing. - doc - document cli-feature to jslint entire directory. - jslint - add eslint-like ignore-directives `/*jslint-disable*/`, `/*jslint-enable*/`, `//jslint-quiet`. - jslint - add new warning `Directive /*jslint-disable*/ was not closed with /*jslint-enable*/.`. - jslint - add new warning `Directive /*jslint-enable*/ was not opened with /*jslint-disable*/.`. - jslint - remove obsolete ie-era warning about duplicate names for caught-errors. - website - move options-ui to top of page after editor-ui
1 parent 9a8e7c9 commit c78c808

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
- jslint - migrate code away from recursive-loops to for/while loops.
1111
- node - after node-v12 is deprecated, change `require("fs").promises` to `require("fs/promises")`.
1212
- node - after node-v14 is deprecated, remove shell-code `export "NODE_OPTIONS=--unhandled-rejections=strict"`.
13+
- tests - update function warn_at() with assertion-check matching column with artifact.
1314
- website - replace current-editor with CodeMirror-editor and change programming-font-family from `Programma` to `Consolas, Menlo, monospace`.
1415

15-
## v2021.6.1-beta
16+
## v2021.6.3
1617
- breaking-change - hardcode `const fudge = 1`
1718
- breaking-change - remove little-used-feature allowing jslint to accept array-of-strings as source b/c internal lines-object has been changed from array-of-strings to array-of-objects.
1819
- doc - add svg changelog.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Douglas Crockford
44
douglas@crockford.com
55

66
# Status
7-
| Branch | [master<br>(v2021.5.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) |
7+
| Branch | [master<br>(v2021.6.3)](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) |
88
|--:|:--:|:--:|:--:|
99
| 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) |
1010
| 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) |

jslint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
wrapped, writable, y
132132
*/
133133

134-
const edition = "v2021.6.1-beta";
134+
const edition = "v2021.6.3";
135135

136136
function assert_or_throw(passed, message) {
137137

0 commit comments

Comments
 (0)