Skip to content

Commit 088b15b

Browse files
committed
Merge branch 'develop' into enhance_compliments_remote_file
2 parents 4bac9e3 + f1522da commit 088b15b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ _This release is scheduled to be released on 2025-01-01._
3838
- [tests] Fix test cases with hard coded Date.now (#3597)
3939
- [core] Fix missing `basePath` where `location.host` is used (#3613)
4040
- [compliments] croner library changed filenames used in latest version (#3624)
41+
- [linter] Fix ESLint ignore pattern which caused that default modules not to be linted. (#3632).
4142

4243
## [2.29.0] - 2024-10-01
4344

eslint.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const config = [
6565
"jest/prefer-mock-promise-shorthand": "warn",
6666
"jest/prefer-to-be": "warn",
6767
"jest/prefer-to-have-length": "warn",
68-
"max-lines-per-function": ["warn", 350],
68+
"max-lines-per-function": ["warn", 400],
6969
"max-statements": "off",
7070
"no-global-assign": "off",
7171
"no-inline-comments": "off",
@@ -119,7 +119,7 @@ const config = [
119119
}
120120
},
121121
{
122-
ignores: ["config/**", "modules/**", "!modules/default/**", "js/positions.js"]
122+
ignores: ["config/**", "modules/**/*", "!modules/default/**", "js/positions.js"]
123123
}
124124
];
125125

0 commit comments

Comments
 (0)