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

eslint.config.jsBlame8 lines · 1 contributor
3fc51c8Claude1// ESLint flat config — TypeScript checking handled by tsc, not eslint.
2// This file exists so `npx eslint .` doesn't error on missing config.
3export default [
4 {
5 ignores: ["**/*.ts", "**/*.tsx", "node_modules/**", "dist/**", ".claude/**"],
6 rules: {},
7 },
8];