CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
eslint.config.cjs
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| b5dd694 | 1 | // ESLint flat config — TypeScript checking handled by tsc, not eslint. |
| 2 | // This file exists so `npx eslint .` exits 0. CJS format for broad parser compat. | |
| 3 | module.exports = [ | |
| 4 | { | |
| 5 | ignores: [ | |
| 6 | "**/*.ts", "**/*.tsx", | |
| 7 | "node_modules/**", "dist/**", ".claude/**", | |
| 8 | ".test-repos*/**", ".test-repos*", | |
| 9 | "repos/**", | |
| 10 | ], | |
| 11 | rules: {}, | |
| 12 | }, | |
| 13 | ]; |