From 213982cdc78c1fe3c828132f1a25d5b853f2a7ef Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 26 Mar 2019 17:17:21 -0400 Subject: [PATCH] Add python configuration --- python/.config/pycodestyle | 4 ++++ python/.pylintrc | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 python/.config/pycodestyle create mode 100644 python/.pylintrc diff --git a/python/.config/pycodestyle b/python/.config/pycodestyle new file mode 100644 index 0000000..ecd2ceb --- /dev/null +++ b/python/.config/pycodestyle @@ -0,0 +1,4 @@ +[pycodestyle] +ignore = E226,E302,E41,E0202,E1101 +max-line-length = 88 +statistics = True diff --git a/python/.pylintrc b/python/.pylintrc new file mode 100644 index 0000000..46dee2e --- /dev/null +++ b/python/.pylintrc @@ -0,0 +1,2 @@ +[MESSAGES CONTROL] +disable=E0202,E1101