From 64d7f1a3b25b388187573a1c6ae711c7a60ccd85 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 4 Nov 2018 00:48:06 +0200 Subject: [PATCH] Enable Flake8 validation in Hound CI Will check all pull requests in the project to make sure they don't violate PEP 8 style (except the E501 for long lines because I think it makes code hard to read). --- .flake8 | 2 ++ .hound.yml | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 .flake8 create mode 100644 .hound.yml diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..e44b810 --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +ignore = E501 diff --git a/.hound.yml b/.hound.yml new file mode 100644 index 0000000..4587839 --- /dev/null +++ b/.hound.yml @@ -0,0 +1,3 @@ +flake8: + enabled: true + config_file: .flake8