format-code: pycodestyle: add some compatibility for black/flake8

Black has some formatting defaults that disagree with pycodestyle.
Add options to pycodestyle to disable all default-disabled checks
plus two that are incompatible with black.  This allows commits to get
in to other repos in preparation for black/flake8 roll-out.

When we switch to black/flake8 these two extras will also be disabled
in flake8.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I86b4e2d21c7a89c40b98aadc3074a554201af93d
diff --git a/scripts/format-code.sh b/scripts/format-code.sh
index 2dd5497..2eab096 100755
--- a/scripts/format-code.sh
+++ b/scripts/format-code.sh
@@ -164,7 +164,8 @@
 LINTER_REQUIRE+=([pycodestyle]="pycodestyle;setup.cfg")
 LINTER_TYPES+=([pycodestyle]="python")
 function do_pycodestyle() {
-    pycodestyle --show-source "$@"
+    pycodestyle --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203,E501 \
+        --show-source "$@"
 }
 
 LINTER_REQUIRE+=([shellcheck]="shellcheck;.shellcheck")