Skip to content
Snippets Groups Projects
setup.cfg 186 B
Newer Older
  • Learn to ignore specific revisions
  • Ned Batchelder's avatar
    Ned Batchelder committed
    [pycodestyle]
    
    # W504 line break after binary operator
    # E722 do not use bare 'except' (pylint will tell us about that)
    ignore = E501, W504, E722
    
    Ned Batchelder's avatar
    Ned Batchelder committed
    max_line_length = 120
    exclude = settings