Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions eslint-configs/eslint-config-seekingalpha-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 4.37.1 - 2025-11-26

- [breaking] disable `jest/valid-mock-module-path` rule

## 4.37.0 - 2025-11-26

- [deps] upgrade `eslint-plugin-testing-library` to version `7.13.5`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-tests",
"version": "4.37.0",
"version": "4.37.1",
"description": "SeekingAlpha's sharable testing ESLint config",
"main": "index.js",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,9 @@ export default {
// https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/valid-expect-in-promise.md
'jest/valid-expect-in-promise': 'error',

// does not work with aliases
// https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/valid-mock-module-path.md
'jest/valid-mock-module-path': 'error',
'jest/valid-mock-module-path': 'off',

// https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/valid-title.md
'jest/valid-title': 'error',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seekingalpha-javascript-style",
"version": "9.63.0",
"version": "9.63.1",
"description": "Set of linting rules, guides and best practices for best Javascript code",
"main": "index.js",
"type": "module",
Expand Down