Skip to content

Commit

Permalink
Fix eslint ignores (#3633)
Browse files Browse the repository at this point in the history
This will fix #3632.
  • Loading branch information
KristjanESPERANTO authored Nov 12, 2024
1 parent 56cb536 commit f1522da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ _This release is scheduled to be released on 2025-01-01._
- [tests] Fix test cases with hard coded Date.now (#3597)
- [core] Fix missing `basePath` where `location.host` is used (#3613)
- [compliments] croner library changed filenames used in latest version (#3624)
- [linter] Fix ESLint ignore pattern which caused that default modules not to be linted. (#3632).

## [2.29.0] - 2024-10-01

Expand Down
4 changes: 2 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const config = [
"jest/prefer-mock-promise-shorthand": "warn",
"jest/prefer-to-be": "warn",
"jest/prefer-to-have-length": "warn",
"max-lines-per-function": ["warn", 350],
"max-lines-per-function": ["warn", 400],
"max-statements": "off",
"no-global-assign": "off",
"no-inline-comments": "off",
Expand Down Expand Up @@ -119,7 +119,7 @@ const config = [
}
},
{
ignores: ["config/**", "modules/**", "!modules/default/**", "js/positions.js"]
ignores: ["config/**", "modules/**/*", "!modules/default/**", "js/positions.js"]
}
];

Expand Down

0 comments on commit f1522da

Please sign in to comment.