Skip to content

Commit

Permalink
Release v1.1.5 (#34)
Browse files Browse the repository at this point in the history
- add env.es2022=true
- remove env.es2023, not supported by all eslint 8 versions
  • Loading branch information
msimerson committed Apr 23, 2024
1 parent 126c5bd commit 18acba6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release
Submodule .release updated 4 files
+4 −3 README.md
+8 −4 contributors.js
+1 −1 finish.sh
+26 −15 submit.sh
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

### Unreleased

### [1.1.5] - 2024-04-22

- add env.es2022=true
- remove env.es2023, not supported by all eslint 8 versions

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

- doc(CONTRIBUTORS): added
Expand Down Expand Up @@ -107,3 +112,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
[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
[1.1.5]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.5
4 changes: 2 additions & 2 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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>)|
| :---: | :---: | :---: | :---: |
| <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">35</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>) |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |

<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,
es2023: true,
es2022: true,
// es2023: true, /* enable with mocha 9 */
// es2024: true, /* enable after 2024-04-30, when node 18 LTS ends */
},
root: true,
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@haraka/eslint-config",
"version": "1.1.4",
"version": "1.1.5",
"description": "eslint config for Haraka projects",
"keywords": [
"haraka",
Expand All @@ -16,6 +16,7 @@
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"format:check": "npm run prettier && npm run lint",
"lint": "npx eslint@^8 *.js",
"lint:fix": "npx eslint@^8 *.js --fix",
"prettier": "npx prettier . --check",
Expand Down

0 comments on commit 18acba6

Please sign in to comment.