Higiene de PR antes da primeira feature de domínio. - Tags Nx canônicas (scope/type/domain) em todos os 5 projetos, incluindo e2e - depConstraints ESLint: scope:api|web|shared + type:app|e2e|feature|util|data - Husky 9 + lint-staged: eslint --max-warnings=0 + prettier --check em pre-commit - commitlint @conventional: tipo obrigatório, scope enum warn, body ilimitado - gitleaks via Docker: zero leaks no tree completo; allowlist .agents/,.claude/,tmp/ - tmp/ adicionado ao .gitignore (relatórios de scan locais) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
509 B
JSON
19 lines
509 B
JSON
{
|
|
"name": "api-e2e",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "application",
|
|
"tags": ["scope:api", "type:e2e", "domain:shared"],
|
|
"implicitDependencies": ["api"],
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/{e2eProjectRoot}"],
|
|
"options": {
|
|
"jestConfig": "apps/api-e2e/jest.config.cts",
|
|
"passWithNoTests": true
|
|
},
|
|
"dependsOn": ["api:build", "api:serve"]
|
|
}
|
|
}
|
|
}
|