From 5d2858244e0e7b3670481562b7d6c8c8619a6df0 Mon Sep 17 00:00:00 2001 From: John Dewey Date: Sat, 14 Mar 2020 13:52:52 -0700 Subject: [PATCH] Ignore pep E203 --- .github/config.yml | 2 ++ tox.ini | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 .github/config.yml diff --git a/.github/config.yml b/.github/config.yml new file mode 100644 index 0000000..42b8c94 --- /dev/null +++ b/.github/config.yml @@ -0,0 +1,2 @@ +todo: + keyword: "TODO" diff --git a/tox.ini b/tox.ini index 1541115..2b5f720 100644 --- a/tox.ini +++ b/tox.ini @@ -64,6 +64,8 @@ commands = whitelist_externals = bash +# TODO(retr0h): Remove linting once black support docstring +# formatting [flake8] max-line-length = 79 format = pylint @@ -79,6 +81,7 @@ exclude = #- [H203] Use assertIs(Not)None to check for None. #- [H904] Delay string interpolations at logging calls. enable-extensions = H106,H203,H904 +ignore = E203 [pytest] testpaths = test/