File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11engines :
22 eslint :
33 enabled : true
4- channel : " eslint-8 "
4+ channel : " eslint-9 "
55 config :
6- config : " .eslintrc.yaml "
6+ config : " eslint.config.mjs "
77
88checks :
99 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/).
44
55### Unreleased
66
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+
712### [ 2.0.1] - 2025-01-07
813
914- deps(peer): don't pin versions
@@ -126,3 +131,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
126131[ 1.1.5 ] : https://github.com/haraka/haraka-eslint/releases/tag/v1.1.5
127132[ 2.0.0 ] : https://github.com/haraka/haraka-eslint/releases/tag/v2.0.0
128133[ 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 22
33This handcrafted artisinal software is brought to you by:
44
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 >) |
66| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
77
88<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 = {
1212 root : true ,
1313 extends : [ "eslint:recommended" ] ,
1414 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" ,
2525 } ,
2626 parserOptions : {
2727 ecmaVersion : "latest" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @haraka/eslint-config" ,
3- "version" : " 2.0.1 " ,
3+ "version" : " 2.0.2 " ,
44 "description" : " eslint config for Haraka projects" ,
55 "keywords" : [
66 " haraka" ,
You can’t perform that action at this time.
0 commit comments