I'm looking to create a cross-platform package.json
mand to lint all .js, .ts, .tsx files in the current directory, recursively.
Here's what I've tried.
- This is directly from the ESLint CLI docs.
"scripts": {
"lint": "eslint . --ext .js,.ts,.tsx",
}
*nix - ✅ Windows -