Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
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.

eslint.config.cjsBlame13 lines · 1 contributor
b5dd694Claude1// 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.
3module.exports = [
4 {
5 ignores: [
6 "**/*.ts", "**/*.tsx",
7 "node_modules/**", "dist/**", ".claude/**",
8 ".test-repos*/**", ".test-repos*",
9 "repos/**",
10 ],
11 rules: {},
12 },
13];