summaryrefslogtreecommitdiff
path: root/.flake8
blob: 790c109fdbef2581d223125bd21b663cb354c2d2 (plain)
1
2
3
4
5
6
7
8
9
[flake8]
max-line-length = 88
ignore =
	# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
	W503
	# W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545
	W504
	# Black creates whitespace before colon
	E203