From: Vincent Driessen Date: Tue, 11 Oct 2016 07:09:20 +0000 (+0200) Subject: Add explicit instructions about configuring flake8 X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/91818a7d5f5a0af5139e9adfedc9d00fa963e699 Add explicit instructions about configuring flake8 --- diff --git a/README.mdown b/README.mdown index 940eadf..00d4951 100644 --- a/README.mdown +++ b/README.mdown @@ -108,6 +108,20 @@ This plugin goes well together with the following plugin: and ``) +Max line lengths +---------------- + +One particular customization a lot of people like to make is relaxing the +maximum line length default. This is a config setting that should be set in +flake8 itself. (vim-flake8 "just" invokes it and deals with showing the output +in Vim's quickfix window.) + +To do so, put the following into your `~/.config/flake8` file: + + [flake8] + max-line-length = 120 + + History ------- 1.6: Deprecated configuring flake8 options through Vim settings. Instead,