microsoft / microsoft/TypeScript
Add support for diagnostic severities
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Go
- Estrellas
- 111k
- Forks
- 14.3k
- Merge medio
- 2 d 4 h
- PR fusionados (30 d)
- 132
Descripción
TypeScript has added compiler options for lint level checks like noUnusedParameters or noUnusedLocals in tsconfig.json (which is goodness). Today when such an option is enabled then the corresponding issues are reported by TypeScript in the same way as semantic or syntax errors. There is no notion of severity.
Background
We are using tslint to develop VS Code and we have used tslint rules to detect unused locals. TSLint rule failures are reported in VS code as warnings and we had the setup that lint style issue are shown as warnings and the typescript issues (syntax, semantic) are shown as errors. Now that typescript added more lint style checks we no longer get the distinction when developing between lint level warnings and semantic errors. The situation has become worse with tslint 4.0, there tslint has started to deprecate rules which are covered by TypeScript compiler options. This makes good sense, but it means we are now starting to see 'unused locals' reported as errors and no longer as warnings as we did before.
Suggestion
Support that the user can define in the tsconfig.json whether a check enabled by compiler option should be reported as error or warning.
eslint supports to configure the severity of an option. Here is an example the eslint documentation:
{
"rules": {
"eqeqeq": "off",
"curly": "warn",
"quotes": ["error", "double"]
}
}
// CC @waderyan @mjbvz
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
El issue se centra en las opciones del compilador de tsconfig.json y en cómo se informan sus diagnósticos. Primero rastrea el manejo existente de opciones como noUnusedParameters y noUnusedLocals y de la severidad de los diagnósticos; el trabajo estará terminado cuando los usuarios puedan configurar esas comprobaciones como advertencias o errores, mientras que los diagnósticos semánticos y sintácticos conserven su distinción.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- typescript
- Área
- compilers
- Tipo de issue
- Nueva funcionalidad
- Dificultad
- 5/5
- Tiempo estimado
- Más de una semana
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 35/100