; vim: set ft=cfg:
[flake8]
# TODO(aperezdc): Enable later on if possible.
# max-complexity = 10
author-attribute = forbidden
hang-closing = False
max-line-length = 110
select =
	# F403: ‘from module import *’ used; unable to detect undefined names
	F403,
	# E123: closing bracket does not match indentation of opening bracket’s line
	E123,
	# E226: missing whitespace around arithmetic operator
	E226,
	# E241: multiple spaces after ‘,’
	E241,
	# E242: tab after ‘,’
	E242,
	# W503: line break occurred before a binary operator
	W503,
