Skip to content

Commit

Permalink
Remove flake8 E303 (too many blank lines) (#20225)
Browse files Browse the repository at this point in the history
Summary:
similar to too few blank lines, I feel like this is not important enough to warrant breaking signal for all linters when it's violated.
Pull Request resolved: #20225

Differential Revision: D15243480

Pulled By: suo

fbshipit-source-id: 37cdc18daf09e07081e42b69c72d331d81660217
  • Loading branch information
suo authored and facebook-github-bot committed May 7, 2019
1 parent ba3e6de commit 8a37518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ max-line-length = 120
# C408 ignored because we like the dict keyword argument syntax
# E501 is not flexible enough, we're using B950 instead
ignore =
E203,E305,E402,E501,E721,E741,F403,F405,F821,F841,F999,W503,W504,C408,E302,W291,
E203,E305,E402,E501,E721,E741,F403,F405,F821,F841,F999,W503,W504,C408,E302,W291,E303,
# these ignores are from flake8-bugbear; please fix!
B007,B008,
# these ignores are from flake8-comprehensions; please fix!
Expand Down

0 comments on commit 8a37518

Please sign in to comment.