We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d779c4b commit b5ad05aCopy full SHA for b5ad05a
1 file changed
.lgtm.yml
@@ -0,0 +1,12 @@
1
+extraction:
2
+ python:
3
+ python_setup:
4
+ version: 3
5
+ after_prepare:
6
+ - python3 -m pip install --upgrade --user flake8
7
+ before_index:
8
+ - python3 -m flake8 --version # flake8 3.6.0 on CPython 3.6.5 on Linux
9
+ # stop the build if there are Python syntax errors or undefined names
10
+ - python3 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
11
+ # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
12
+ - python3 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
0 commit comments