File tree Expand file tree Collapse file tree 5 files changed +20
-14
lines changed Expand file tree Collapse file tree 5 files changed +20
-14
lines changed Original file line number Diff line number Diff line change 1
1
engines :
2
2
eslint :
3
3
enabled : true
4
- channel : " eslint-8 "
4
+ channel : " eslint-9 "
5
5
config :
6
- config : " .eslintrc.yaml "
6
+ config : " eslint.config.mjs "
7
7
8
8
checks :
9
9
method-complexity :
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
4
4
5
5
### Unreleased
6
6
7
+ ### [ 2.0.2] - 2025-01-07
8
+
9
+ - index: specify eslint globals as "readonly" (changed in v9)
10
+ - update codeclimate config for eslint 9
11
+
7
12
### [ 2.0.1] - 2025-01-07
8
13
9
14
- deps(peer): don't pin versions
@@ -126,3 +131,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
126
131
[ 1.1.5 ] : https://github.com/haraka/haraka-eslint/releases/tag/v1.1.5
127
132
[ 2.0.0 ] : https://github.com/haraka/haraka-eslint/releases/tag/v2.0.0
128
133
[ 2.0.1 ] : https://github.com/haraka/haraka-eslint/releases/tag/v2.0.1
134
+ [ 2.0.2 ] : https://github.com/haraka/haraka-eslint/releases/tag/v2.0.2
Original file line number Diff line number Diff line change 2
2
3
3
This handcrafted artisinal software is brought to you by:
4
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 " >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 >) |
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 " >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 >) |
6
6
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
7
7
8
8
<sub >this file is generated by [ .release] ( https://github.com/msimerson/.release ) .
Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ module.exports = {
12
12
root : true ,
13
13
extends : [ "eslint:recommended" ] ,
14
14
globals : {
15
- CONT : 900 ,
16
- STOP : 901 ,
17
- DENY : 902 ,
18
- DENYSOFT : 903 ,
19
- DENYDISCONNECT : 904 ,
20
- DISCONNECT : 905 ,
21
- OK : 906 ,
22
- NEXT_HOOK : 907 ,
23
- DELAY : 908 ,
24
- DENYSOFTDISCONNECT : 909 ,
15
+ CONT : "readonly" ,
16
+ STOP : "readonly" ,
17
+ DENY : "readonly" ,
18
+ DENYSOFT : "readonly" ,
19
+ DENYDISCONNECT : "readonly" ,
20
+ DISCONNECT : "readonly" ,
21
+ OK : "readonly" ,
22
+ NEXT_HOOK : "readonly" ,
23
+ DELAY : "readonly" ,
24
+ DENYSOFTDISCONNECT : "readonly" ,
25
25
} ,
26
26
parserOptions : {
27
27
ecmaVersion : "latest" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @haraka/eslint-config" ,
3
- "version" : " 2.0.1 " ,
3
+ "version" : " 2.0.2 " ,
4
4
"description" : " eslint config for Haraka projects" ,
5
5
"keywords" : [
6
6
" haraka" ,
You can’t perform that action at this time.
0 commit comments