lint-staged.config.js raw

   1  export default {
   2    "src/**/*.{ts,tsx,json}": [
   3      "eslint --fix --no-warn-ignored --max-warnings 0",
   4      "prettier --write",
   5    ],
   6    "platform_specific/**/*.ts": ["prettier --write"],
   7    "package.json": ["prettier --write"],
   8    "src/**/*.ts": () => "tsc --noEmit",
   9  };
  10