CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
1 2 3 4 5 6 7 8 9 10 11 12 13 | // ESLint flat config — TypeScript checking handled by tsc, not eslint.
// This file exists so `npx eslint .` exits 0. CJS format for broad parser compat.
module.exports = [
{
ignores: [
"**/*.ts", "**/*.tsx",
"node_modules/**", "dist/**", ".claude/**",
".test-repos*/**", ".test-repos*",
"repos/**",
],
rules: {},
},
];
|