You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change the default patterns for which files should be mutated to:
```json
{
"mutate": [
"{src,lib}/**/!(*.+(s|S)pec|*.+(t|T)est).+(cjs|mjs|js|ts|jsx|tsx|html|vue)",
"!{src,lib}/**/__tests__/**/*.+(cjs|mjs|js|ts|jsx|tsx|html|vue)"
]
}
```
Basically means any JS or friend file in the `lib` or `src` directory that isn't obviously a test file.
Fixes#2384
Since we now support JS, TS and Vue files by default (since mutation switching), we should reflect all file types in the default mutate array:
Maybe clean it up a little bit as well, with current knowledge of globbing strategies :)
The text was updated successfully, but these errors were encountered: