Refactor extension proposals check to use Array.prototype.includes
Abierto
stale
triage-needed
- Lenguaje dominante
- TypeScript
- Estrellas
- 193k
- Forks
- 42.4k
- Métricas de merge de PR
- Métricas de PR pendientes
Descripción
**Problem/Feature Description**
In the extension proposal utility, the code currently uses `existing.indexOf(e.id) === -1` to filter known extensions.
**Proposed Solution**
Replace `existing.indexOf(e.id) === -1` with modern TypeScript/JavaScript syntax using `!existing.includes(e.id)` to improve code readability and maintainability.
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.