Skip to content

Commit

Permalink
Remove flake8-broken-line plugin
Browse files Browse the repository at this point in the history
Black already does this anyways
  • Loading branch information
davfsa committed Nov 27, 2022
1 parent 2130184 commit d6c8c98
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ ignore =
D105, # Magic methods not having a docstring.
D412, # No blank lines allowed between a section header and its content
E402, # Module level import not at top of file (isn't compatible with our import style).
IFSTMT001 # "use a oneliner here".
T101, # TO-DO comment detection (T102 is FIX-ME and T103 is XXX).
W503, # line break before binary operator.
W504, # line break before binary operator (again, I guess).
S101, # Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.

# F401: unused import.
Expand Down
1 change: 0 additions & 1 deletion dev-requirements/flake8.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ flake8==6.0.0

flake8-bandit~=4.1.1 # runs bandit
flake8-black==0.3.5 # runs black
flake8-broken-line==0.6.0 # forbey "\" linebreaks
flake8-builtins==2.0.1 # builtin shadowing checks
flake8-coding==1.3.2 # coding magic-comment detection
flake8-comprehensions==3.10.1 # comprehension checks
Expand Down

0 comments on commit d6c8c98

Please sign in to comment.