Skip to content

Commit

Permalink
add rule: no-unused-vars: 1
Browse files Browse the repository at this point in the history
- doc(CONTRIBUTORS): added
- add env.es2023=true
  • Loading branch information
msimerson committed Apr 22, 2024
1 parent f01e0c4 commit 571dc6b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

### Unreleased

### [1.1.4] - 2024-04-22

- doc(CONTRIBUTORS): added
- add env.es2023=true
- add rule: no-unused-vars: 1

### [1.1.3] - 2024-04-07

- add env.es2020=true
Expand Down Expand Up @@ -100,3 +106,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
[1.1.0]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.0
[1.1.1]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.1
[1.1.3]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.3
[1.1.4]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.4
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ module.exports = {
node: true,
es6: true,
mocha: true,
es2022: true,
es2023: true,
// es2024: true, /* enable after 2024-04-30, when node 18 LTS ends */
},
root: true,
extends: ["eslint:recommended"],
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@haraka/eslint-config",
"version": "1.1.3",
"version": "1.1.4",
"description": "eslint config for Haraka projects",
"keywords": [
"haraka",
Expand All @@ -21,8 +21,8 @@
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "node index.js",
"versions": "npx @msimerson/dependency-version-checker check",
"versions:fix": "npx @msimerson/dependency-version-checker update"
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 571dc6b

Please sign in to comment.