Skip to content
Snippets Groups Projects
setup.cfg 934 B
Newer Older
  • Learn to ignore specific revisions
  • matrix.org's avatar
    matrix.org committed
    [build_sphinx]
    source-dir = docs/sphinx
    build-dir  = docs/build
    all_files  = 1
    
    [trial]
    test_suite = tests
    
    [flake8]
    
    # 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?)
    #  E731: do not assign a lambda expression, use a def
    
    Amber Brown's avatar
    Amber Brown committed
    #  E501: Line too long (black enforces this for us)
    ignore=W503,W504,E203,E731,E501
    
    Amber Brown's avatar
    Amber Brown committed
    line_length = 88
    
    not_skip = __init__.py
    sections=FUTURE,STDLIB,COMPAT,THIRDPARTY,TWISTED,FIRSTPARTY,TESTS,LOCALFOLDER
    default_section=THIRDPARTY
    known_first_party = synapse
    known_tests=tests
    known_compat = mock,six
    known_twisted=twisted,OpenSSL
    multi_line_output=3
    include_trailing_comma=true