Commit 418ddf35 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Disable pycodestyle rules affecting line continuation & in-lining

parent 5f74a082
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@ pycodestyle = [
	# a pre-commit hook.
	"+E*",

	# DISABLE "Continuation line missing indentation or outdented"
	"-E122",

	# DISABLE "Missing whitespace around bitwise or shift operator"
	"-E227",

@@ -18,6 +21,9 @@ pycodestyle = [
	# Prefer B950 implementation
	"-E501",

	# DISABLE "Multiple statements on one line (colon)"
	"-E701",

	# DISABLE "Multiple statements on one line (def)"
	# Doesn't work well with @overload definitions
	"-E704",