Skip to content

Commit

Permalink
Use flake8 to find syntax errors and undefined names
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Nov 15, 2018
1 parent 9faee1c commit ddd6c92
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lgtm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ extraction:
python:
python_setup:
version: 3
after_prepare:
- python3 -m pip install --upgrade --user flake8
before_index:
- python3 -m flake8 --version # flake8 3.6.0 on CPython 3.6.5 on Linux
# stop the build if there are Python syntax errors or undefined names
- python3 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- python3 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics

0 comments on commit ddd6c92

Please sign in to comment.