Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - 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>
26 lines
424 B
Plaintext
26 lines
424 B
Plaintext
{
|
|
"root": true,
|
|
|
|
"extends": "@ljharb/eslint-config/node/0.4",
|
|
|
|
"rules": {
|
|
"consistent-return": "warn",
|
|
"func-style": "warn",
|
|
"max-len": "off",
|
|
"max-lines-per-function": "off",
|
|
"max-statements-per-line": "warn",
|
|
"no-invalid-this": "warn",
|
|
"no-param-reassign": "warn",
|
|
"no-underscore-dangle": "warn",
|
|
},
|
|
|
|
"overrides": [
|
|
{
|
|
"files": "test/**",
|
|
"rules": {
|
|
"no-plusplus": "warn",
|
|
},
|
|
},
|
|
],
|
|
}
|