Skip to content

Commit 20ce5c9

Browse files
author
Ryan Pineo
committedSep 19, 2019
Move flake8 config to .flake8 and add E203, W503 to ignored rules
1 parent 576d6e2 commit 20ce5c9

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed
 

‎.flake8

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[flake8]
2+
ignore = E203, E266, E501, F405, W503
3+
max-complexity = 18
4+
select = B,C,E,F,W,T4,B9

‎setup.cfg

-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
11
[tool:pytest]
22
addopts = --ds=settings.test
3-
4-
[flake8]
5-
# line length, too many leading #, unkown name with import *
6-
ignore = E501,E266,F405
7-
exclude = migrations,venv

0 commit comments

Comments
 (0)
Please sign in to comment.