Saltar al contenido

cómo ejecutar flake8 en el ejemplo de código de archivo de Python

Ejemplo: ejecutar flake8

#Install flake8
python -m pip install flake8

#Run flake8 lint check against file
flake8 path/to/code/to/check.py

#Run flake8 lint check for specific errors or warnings by their reference code
flake8 --select E123,W503 path/to/code/to/check.py

#Run flake8 lint check and ignore specific errors or warnings by their reference code
flake8 --ignore E24,W504 path/to/code/to/check.py
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *