[flake8]
# E203 whitespace before ':'
# W503 line break occurred before a binary operator
ignore =
	E203,
	W503,
	# Rules to gradually enforce
	C901, # 'CommandLine.main' is too complex (22)
	E266, # too many leading '#' for block comment
	E402, # module level import not at top of file
	E501, # line too long (93 > 88 characters)
	E711, # comparison to None should be 'if cond is None:'
	E712, # comparison to False should be 'if cond is False:' or 'if not cond:'
	E714, # test for object identity should be 'is not'
	E722, # do not use bare 'except'
	E731, # do not assign a lambda expression, use a def
	E741, # ambiguous variable name 'l'
	F401, # module imported but unused
	F601, # dictionary key 'creator' repeated with different values
	F811, # redefinition of unused 'mock' from line 6
	F821, # undefined name 'access_content'
	F841, # local variable 'access_context' is assigned to but never used
	W605, # invalid escape sequence '\,'

max-line-length = 88
statistics = True
max-complexity = 18
