Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
305 B
Plaintext
21 lines
305 B
Plaintext
{
|
|
"node": true,
|
|
|
|
"bitwise": true,
|
|
"camelcase": true,
|
|
"curly": true,
|
|
"forin": true,
|
|
"immed": true,
|
|
"latedef": true,
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"noempty": true,
|
|
"nonew": true,
|
|
"quotmark": "single",
|
|
"undef": true,
|
|
"unused": true,
|
|
"trailing": true,
|
|
|
|
"laxcomma": true
|
|
}
|