Skip to content

Commit 3b53b92

Browse files
author
Pietro Albini
committed
Fix linting not checking for errors
Commit d180cb7 erroneously disabled almost all of the linting checks. This commit fixes that regression.
1 parent 0654151 commit 3b53b92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def test():
225225
@invoke.task
226226
def lint():
227227
"""Lint the source code"""
228-
FLAKE8_OPTIONS = "--select=E226"
228+
FLAKE8_OPTIONS = "--select=E,W,F,C9,N8"
229229
env = create_env("lint", requirements=True)
230230

231231
invoke.run("%s/bin/flake8 %s %s" % (env, FLAKE8_OPTIONS, PROJECT))

0 commit comments

Comments
 (0)