UNPKG

eslint-config-ts-strict

Version:

Very strict ESLint config for projects using TypeScript, React and Prettier. ESLint v9 flat config only. Formatting rules disabled to prevent Prettier conflicts.

21 lines (19 loc) 299 B
import tsStrict from "./index.js"; export default [ ...tsStrict, { ignores: [ "node_modules/**", "coverage/**", "dist/**", "build/**", ], }, { files: ["test/**"], rules: { // Allow console.log in tests "no-console": "off", }, }, ];