Skip to content

Commit

Permalink
Merge pull request #415 from kaizhu256/branch-v2022.9.20
Browse files Browse the repository at this point in the history
# v2022.9.20
  • Loading branch information
kaizhu256 committed Sep 21, 2022
2 parents e8d6fd5 + ad0dbf6 commit b1e27be
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .ci.sh
Expand Up @@ -434,7 +434,7 @@ import moduleFs from "fs";
"type": "git",
"url": "https://github.com/jslint-org/jslint.git"
},
"version": "2022.9.1"
"version": "2022.9.20"
}, undefined, 4)
}
].map(async function ({
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -13,7 +13,7 @@
- jslint - add new warning "Expected Object.create(null) instead of {}"
- node - after node-v14 is deprecated, remove shell-code `export "NODE_OPTIONS=--unhandled-rejections=strict"`.

# v2022.9.1-beta
# v2022.9.20
- directive - add new directive `fart` to allow complex fat-arrow

# v2022.7.20
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -3,7 +3,7 @@ Douglas Crockford <douglas@crockford.com>


# Status
| Branch | [master<br>(v2022.7.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) |
| Branch | [master<br>(v2022.9.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) |
|--:|:--:|:--:|:--:|
| 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/.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) |
Expand Down Expand Up @@ -577,7 +577,7 @@ right so that you can focus your creative energy where it is most needed.

```js
/*jslint bitwise*/
// Allow bitwise operators.
// Allow bitwise operator.

let foo = 0 | 1;
```
Expand All @@ -599,7 +599,7 @@ localStorage.getItem("foo");

```js
/*jslint convert*/
// Allow conversion operators.
// Allow conversion operator.

let foo = new Date() + "";
let bar = !!0;
Expand Down Expand Up @@ -730,7 +730,7 @@ require("fs");

```js
/*jslint nomen*/
// Allow weird property names.
// Allow weird property name.

let foo = {};
foo._bar = 1;
Expand Down
4 changes: 2 additions & 2 deletions help.html
Expand Up @@ -565,8 +565,8 @@ <h1><code>/*jslint*/</code></h1>
<td><code>true</code> is used by developers to debug JSLint.</td>
</tr>
<tr>
<td id="unordered">Allow unordered case-statements, params,
properties.</td>
<td id="unordered">Allow unordered cases, params, properties,
and variables.</td>
<td><code>unordered</code></td>
<td><code>true</code> if objects and functions are allowed
to declare properties and params in non-ascii order.</td>
Expand Down
2 changes: 1 addition & 1 deletion jslint.mjs
Expand Up @@ -165,7 +165,7 @@ let jslint_charset_ascii = (
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
);
let jslint_edition = "v2022.9.1-beta";
let jslint_edition = "v2022.9.20";
let jslint_export; // The jslint object to be exported.
let jslint_fudge = 1; // Fudge starting line and starting
// ... column to 1.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -33,5 +33,5 @@
"test2": "sh jslint_ci.sh shCiBase"
},
"type": "module",
"version": "2022.9.1-beta"
"version": "2022.9.20"
}

0 comments on commit b1e27be

Please sign in to comment.