Blame · Line-by-line history
eslint.config.js
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 3fc51c8 | 1 | // ESLint flat config — TypeScript checking handled by tsc, not eslint. |
| 2 | // This file exists so `npx eslint .` doesn't error on missing config. | |
| 3 | export default [ | |
| 4 | { | |
| 5 | ignores: ["**/*.ts", "**/*.tsx", "node_modules/**", "dist/**", ".claude/**"], | |
| 6 | rules: {}, | |
| 7 | }, | |
| 8 | ]; |