Skip to content

Commit

Permalink
flake8 config
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhanson committed Apr 16, 2021
1 parent f302b39 commit c3835a3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[flake8]
max-line-length = 125

## IGNORES

# E126: yapf conflicts with "continuation line over-indented for hanging indent"

# E127: flake8 reporting incorrect continuation line indent errors
# on multi-line and multi-level indents

# W503: flake8 reports this as incorrect, and scripts/format_code
# changes code to it, so let format_code win.

ignore = E126,E127,W503

exclude =
docs/build
.tox

0 comments on commit c3835a3

Please sign in to comment.