Skip to content

Commit 126c5bd

Browse files
authored
Release v1.1.4 (#33)
- doc(CONTRIBUTORS): added - add rule: no-unused-vars: 1 - add env.es2023=true
1 parent a8d35d7 commit 126c5bd

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
44

55
### Unreleased
66

7+
### [1.1.4] - 2024-04-22
8+
9+
- doc(CONTRIBUTORS): added
10+
- add env.es2023=true
11+
- add rule: no-unused-vars: 1
12+
713
### [1.1.3] - 2024-04-07
814

915
- add env.es2020=true
@@ -100,3 +106,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
100106
[1.1.0]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.0
101107
[1.1.1]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.1
102108
[1.1.3]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.3
109+
[1.1.4]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.4

CONTRIBUTORS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Contributors
2+
3+
This handcrafted artisinal software is brought to you by:
4+
5+
| <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>)|
6+
| :---: | :---: | :---: | :---: |
7+
8+
<sub>this file is maintained by [.release](https://github.com/msimerson/.release)</sub>

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ module.exports = {
55
node: true,
66
es6: true,
77
mocha: true,
8-
es2022: true,
8+
es2023: true,
9+
// es2024: true, /* enable after 2024-04-30, when node 18 LTS ends */
910
},
1011
root: true,
1112
extends: ["eslint:recommended"],

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@haraka/eslint-config",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "eslint config for Haraka projects",
55
"keywords": [
66
"haraka",
@@ -21,8 +21,8 @@
2121
"prettier": "npx prettier . --check",
2222
"prettier:fix": "npx prettier . --write --log-level=warn",
2323
"test": "node index.js",
24-
"versions": "npx @msimerson/dependency-version-checker check",
25-
"versions:fix": "npx @msimerson/dependency-version-checker update"
24+
"versions": "npx dependency-version-checker check",
25+
"versions:fix": "npx dependency-version-checker update"
2626
},
2727
"repository": {
2828
"type": "git",

0 commit comments

Comments
 (0)