I currently have this command in my package.json:
"lint-staged": {
"{src}/**/*.{js,jsx,ts,tsx}": [
"prettier-eslint --write"
]
}
How can I add testing files to this? Currently SampleComponent.test.tsx does not get this command invoked on it, but SampleComponent.tsx does. Thanks!