Python: Show source of linting errors.

patch-python-linting
Phil Howard 2022-08-03 08:58:04 +01:00
rodzic 4abe57d0f3
commit 527b97fb91
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -17,14 +17,14 @@ jobs:
- name: Lint micropython/modules_py
shell: bash
run: |
python3 -m flake8 --ignore E501 micropython/modules_py
python3 -m flake8 --show-source --ignore E501 micropython/modules_py
- name: Lint micropython/examples
shell: bash
run: |
python3 -m flake8 --ignore E501 micropython/examples
python3 -m flake8 --show-source --ignore E501 micropython/examples
- name: Lint .py tools in C++ examples
shell: bash
run: |
python3 -m flake8 --ignore E501 examples
python3 -m flake8 --show-source --ignore E501 examples