Skip to content

Commit

Permalink
Release v1.1.4 (#33)
Browse files Browse the repository at this point in the history
- doc(CONTRIBUTORS): added
- add rule: no-unused-vars: 1
- add env.es2023=true
  • Loading branch information
msimerson committed Apr 22, 2024
1 parent a8d35d7 commit 126c5bd
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release
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
8 changes: 8 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Contributors

This handcrafted artisinal software is brought to you by:

| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/haraka-eslint/commits?author=msimerson">34</a>)| <img height="80" src="https://avatars.githubusercontent.com/u/662371?v=4"><br><a href="https://github.com/baudehlo">baudehlo</a> (<a href="https://github.com/haraka/haraka-eslint/commits?author=baudehlo">2</a>)| <img height="80" src="https://avatars.githubusercontent.com/u/4670561?v=4"><br><a href="https://github.com/ztipnis">ztipnis</a> (<a href="https://github.com/haraka/haraka-eslint/commits?author=ztipnis">1</a>)| <img height="80" src="https://avatars.githubusercontent.com/in/17324?v=4"><br><a href="https://github.com/apps/lgtm-com">lgtm-com[bot]</a> (<a href="https://github.com/haraka/haraka-eslint/commits?author=lgtm-com[bot]">1</a>)|
| :---: | :---: | :---: | :---: |

<sub>this file is maintained by [.release](https://github.com/msimerson/.release)</sub>
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 126c5bd

Please sign in to comment.