mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-06-11 10:43:10 +08:00
docs: add Spanish (es) translation (#2095)
Adds a complete Spanish translation of the ECC documentation under docs/es/, mirroring the Turkish (docs/tr/) translation in scope. 141 files covering agents, commands, rules, skills, contexts, examples, and core docs. Updates root README.md with the Spanish language link. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
committed by
GitHub
parent
28b78dd7bf
commit
ac0f11c640
30
docs/es/rules/python/security.md
Normal file
30
docs/es/rules/python/security.md
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
paths:
|
||||
- "**/*.py"
|
||||
- "**/*.pyi"
|
||||
---
|
||||
# Seguridad en Python
|
||||
|
||||
> Este archivo extiende [common/security.md](../common/security.md) con contenido específico de Python.
|
||||
|
||||
## Gestión de Secretos
|
||||
|
||||
```python
|
||||
import os
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
api_key = os.environ["OPENAI_API_KEY"] # Lanza KeyError si falta
|
||||
```
|
||||
|
||||
## Escaneo de Seguridad
|
||||
|
||||
- Usar **bandit** para análisis estático de seguridad:
|
||||
```bash
|
||||
bandit -r src/
|
||||
```
|
||||
|
||||
## Referencia
|
||||
|
||||
Ver skill: `django-security` para directrices de seguridad específicas de Django (si aplica).
|
||||
Reference in New Issue
Block a user