[flake8] # This is a flake8 config, there are many like it, but this is mine # Disable E123 # Disable W234 # Also disable E111 ignore = E123, W234, E111 # Exclude foo/ # Exclude bar/ while we're at it # Exclude bogus/ exclude = foo/, bar/, bogus/