summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorYang Yang <y4n9squared@gmail.com>2022-08-06 19:48:00 -0400
committerGitHub <noreply@github.com>2022-08-07 06:48:00 +0700
commit9db728921d92b3edc8107154e07362b3ed7a8e24 (patch)
tree09d59af2292f1839ac47deeb86a1d486db0fe4c4 /setup.cfg
parent01635dc80926fd31915f0dcbc30c9c41056b6330 (diff)
downloadrq-9db728921d92b3edc8107154e07362b3ed7a8e24.tar.gz
Improve the lint situation (#1688)
* Move common flake8 options into config file Currently --max-line-length being specified in two places. Just use the existing value in the config file as the source of truth. Move --count and --statistics to config file as well. * Fix some lints
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 912a1b4..9cc24f6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -8,3 +8,5 @@ universal = 1
[flake8]
max-line-length=120
ignore=E731
+count=True
+statistics=True