From 126c5bde9f07b08ab5aeba2f967ea9436003ad6b Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Mon, 22 Apr 2024 16:45:28 -0700 Subject: [PATCH] Release v1.1.4 (#33) - doc(CONTRIBUTORS): added - add rule: no-unused-vars: 1 - add env.es2023=true --- .release | 2 +- CHANGELOG.md | 7 +++++++ CONTRIBUTORS.md | 8 ++++++++ index.js | 3 ++- package.json | 6 +++--- 5 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 CONTRIBUTORS.md diff --git a/.release b/.release index bf1c003..36bb27a 160000 --- a/.release +++ b/.release @@ -1 +1 @@ -Subproject commit bf1c00396dff9087efb31443bc3afe877f13d33a +Subproject commit 36bb27a93862517943e04f24fd67b0df2da6cbbe diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f30b2f..4be101c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..125ae89 --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,8 @@ +# Contributors + +This handcrafted artisinal software is brought to you by: + +|
msimerson (34)|
baudehlo (2)|
ztipnis (1)|
lgtm-com[bot] (1)| +| :---: | :---: | :---: | :---: | + +this file is maintained by [.release](https://github.com/msimerson/.release) diff --git a/index.js b/index.js index 3ecce13..80e8725 100644 --- a/index.js +++ b/index.js @@ -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"], diff --git a/package.json b/package.json index 0db8419..ef59aaa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@haraka/eslint-config", - "version": "1.1.3", + "version": "1.1.4", "description": "eslint config for Haraka projects", "keywords": [ "haraka", @@ -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",