-
Notifications
You must be signed in to change notification settings - Fork 47
Open
Description
✔️
When using a basic jest config the Press F to override ESLint --fix
works as expected.
module.exports = {
runner: 'jest-runner-eslint',
displayName: 'lint',
testMatch: ['<rootDir>/src/**/*.js'],
watchPlugins: ["jest-runner-eslint/watch-fix"],
};
✖️
When using a projects configuration the Press F to override ESLint --fix
does not work.
module.exports = {
projects: [
{
displayName: 'test',
},
{
runner: 'jest-runner-eslint',
displayName: 'lint',
testMatch: ['<rootDir>/src/**/*.js'],
watchPlugins: ["jest-runner-eslint/watch-fix"],
},
],
};
Metadata
Metadata
Assignees
Labels
No labels