Muestra las diferencias entre dos versiones de la página.
| Ambos lados, revisión anterior Revisión previa Próxima revisión | Revisión previa | ||
|
wiki2:python:flake8 [2019/03/18 08:58] alfred [Interesting usages] |
wiki2:python:flake8 [2020/05/09 09:25] (actual) |
||
|---|---|---|---|
| Línea 27: | Línea 27: | ||
| The output format is: \\ | The output format is: \\ | ||
| ''file path : line number : column number : error code : short description'' | ''file path : line number : column number : error code : short description'' | ||
| + | |||
| + | Flake8 will exit with code 1 if there are errors. You can change this using the parameter: ''<nowiki>--exit-zero</nowiki>'' | ||
| Error code prefix: | Error code prefix: | ||
| Línea 86: | Línea 88: | ||
| + | ==== Plugins ==== | ||
| + | |||
| + | To see which plugins are enabled: | ||
| + | <code> | ||
| + | flake8 --version | ||
| + | </code> | ||
| + | |||
| + | To temporally enable disabled plugins: ''<nowiki>--enabled-extensions=ENABLED_EXTENSIONS</nowiki>''. | ||