From 63608c429e786bcb92968b43f4c90c98cee6f6f1 Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Tue, 10 Apr 2018 14:05:42 -0700 Subject: [PATCH] Add flake8 config --- default.conf.yaml | 1 + etc/flake8 | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 etc/flake8 diff --git a/default.conf.yaml b/default.conf.yaml index be82f6e..661ede7 100644 --- a/default.conf.yaml +++ b/default.conf.yaml @@ -8,6 +8,7 @@ ~/.emacs.d: emacs/ ~/.config/git: git/ ~/.gitignore: git/gitignore + ~/.config/flake8: etc/flake8 ~/.config/nvim: neovim/ ~/.config/tako: tako/ ~/.config/zsh: zsh/ diff --git a/etc/flake8 b/etc/flake8 new file mode 100644 index 0000000..0fdeb8a --- /dev/null +++ b/etc/flake8 @@ -0,0 +1,4 @@ +[flake8] +ignore = + # Long lines are sometimes necessary, and 80 characters is too short anyway + E501