Quality Rails provides mechanical enforcement of code quality through pre-commit hooks and CI/CD pipelines, preventing ~70% of common issues. What's added: - Pre-commit hooks via husky (formatting enforcement enabled) - Enhanced ESLint rules (no-explicit-any, security plugin, etc.) - lint-staged configuration (currently formatting-only mode) - Woodpecker CI pipeline template (.woodpecker.yml) - eslint-plugin-security for vulnerability detection - Documentation (docs/quality-rails-status.md) Current status: - Strict enforcement DISABLED until existing violations are fixed - Found 1,226 violations (1,121 errors, 105 warnings) - Priority: Fix explicit 'any' types first - Pre-commit currently only enforces Prettier formatting Next steps: 1. Fix existing lint violations 2. Enable strict pre-commit enforcement 3. Configure CI/CD pipeline Based on quality-rails from ~/src/quality-rails (monorepo template) See docs/quality-rails-status.md for detailed roadmap. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
53 lines
624 B
Plaintext
53 lines
624 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnpm-store
|
|
|
|
# Build outputs
|
|
dist
|
|
.next
|
|
.turbo
|
|
|
|
# Compiled source (prevent accidental commits)
|
|
apps/*/src/**/*.js
|
|
apps/*/src/**/*.d.ts
|
|
apps/*/src/**/*.js.map
|
|
apps/*/src/**/*.d.ts.map
|
|
packages/*/src/**/*.js
|
|
packages/*/src/**/*.d.ts
|
|
packages/*/src/**/*.js.map
|
|
packages/*/src/**/*.d.ts.map
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Testing
|
|
coverage
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Misc
|
|
*.tsbuildinfo
|
|
.pnpm-approve-builds
|
|
|
|
# Husky
|
|
.husky/_
|