Skip to content

Commit f1522da

Browse files
Fix eslint ignores (#3633)
This will fix #3632.
1 parent 56cb536 commit f1522da

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
@@ -37,6 +37,7 @@ _This release is scheduled to be released on 2025-01-01._
3737
- [tests] Fix test cases with hard coded Date.now (#3597)
3838
- [core] Fix missing `basePath` where `location.host` is used (#3613)
3939
- [compliments] croner library changed filenames used in latest version (#3624)
40+
- [linter] Fix ESLint ignore pattern which caused that default modules not to be linted. (#3632).
4041

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

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)