22 lines
630 B
INI
22 lines
630 B
INI
[flake8]
|
|
# line length defaulted to by black
|
|
max-line-length = 88
|
|
|
|
# see https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
|
|
# for error codes. The ones we ignore are:
|
|
# W503: line break before binary operator
|
|
# W504: line break after binary operator
|
|
# E203: whitespace before ':' (which is contrary to pep8?)
|
|
# (this is a subset of those ignored in Synapse)
|
|
ignore=W503,W504,E203
|
|
|
|
[isort]
|
|
line_length = 88
|
|
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,TESTS,LOCALFOLDER
|
|
default_section=THIRDPARTY
|
|
known_first_party=scone
|
|
known_tests=tests
|
|
multi_line_output=3
|
|
include_trailing_comma=true
|
|
combine_as_imports=true
|