Skip to content

Commit

Permalink
Release v2.0.2 (#37)
Browse files Browse the repository at this point in the history
- update codeclimate config for eslint 9
- index: specify eslint globals as "readonly" (changed in v9)
  • Loading branch information
msimerson authored Jan 7, 2025
1 parent 0b04337 commit 70b6a5b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
engines:
eslint:
enabled: true
channel: "eslint-8"
channel: "eslint-9"
config:
config: ".eslintrc.yaml"
config: "eslint.config.mjs"

checks:
method-complexity:
Expand Down
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

### [2.0.2] - 2025-01-07

- index: specify eslint globals as "readonly" (changed in v9)
- update codeclimate config for eslint 9

### [2.0.1] - 2025-01-07

- deps(peer): don't pin versions
Expand Down Expand Up @@ -126,3 +131,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
[1.1.5]: https://github.com/haraka/haraka-eslint/releases/tag/v1.1.5
[2.0.0]: https://github.com/haraka/haraka-eslint/releases/tag/v2.0.0
[2.0.1]: https://github.com/haraka/haraka-eslint/releases/tag/v2.0.1
[2.0.2]: https://github.com/haraka/haraka-eslint/releases/tag/v2.0.2
2 changes: 1 addition & 1 deletion 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">37</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/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/haraka-eslint/commits?author=msimerson">38</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 generated by [.release](https://github.com/msimerson/.release).
Expand Down
20 changes: 10 additions & 10 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ module.exports = {
root: true,
extends: ["eslint:recommended"],
globals: {
CONT: 900,
STOP: 901,
DENY: 902,
DENYSOFT: 903,
DENYDISCONNECT: 904,
DISCONNECT: 905,
OK: 906,
NEXT_HOOK: 907,
DELAY: 908,
DENYSOFTDISCONNECT: 909,
CONT: "readonly",
STOP: "readonly",
DENY: "readonly",
DENYSOFT: "readonly",
DENYDISCONNECT: "readonly",
DISCONNECT: "readonly",
OK: "readonly",
NEXT_HOOK: "readonly",
DELAY: "readonly",
DENYSOFTDISCONNECT: "readonly",
},
parserOptions: {
ecmaVersion: "latest",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@haraka/eslint-config",
"version": "2.0.1",
"version": "2.0.2",
"description": "eslint config for Haraka projects",
"keywords": [
"haraka",
Expand Down

0 comments on commit 70b6a5b

Please sign in to comment.