Files
torrent_frontend/lint-staged.config.js
2024-05-07 22:22:19 +04:00

14 lines
476 B
JavaScript

module.exports = {
// this will check Typescript files
"**/*.(ts|tsx)": () => "npx tsc --noEmit",
// This will lint and format TypeScript and //JavaScript files
"**/*.(ts|tsx|js)": filenames => [
`npx eslint --fix ${filenames.join(" ")}`,
`npx prettier --write ${filenames.join(" ")}`,
],
// this will Format MarkDown and JSON
"**/*.(md|json)": filenames => `npx prettier --write ${filenames.join(" ")}`,
};