From fa93d0a9295f1c31960b9f2d0895c548faae4e75 Mon Sep 17 00:00:00 2001 From: ZyX Date: Fri, 15 Aug 2014 20:04:12 +0400 Subject: [PATCH] =?UTF-8?q?Ignore=20E101=20(=E2=80=9Cindentation=20contain?= =?UTF-8?q?s=20mixed=20spaces=20and=20tabs=E2=80=9D)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .local.vimrc | 2 +- CONTRIBUTING.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.local.vimrc b/.local.vimrc index 090a8331..edf53ee8 100644 --- a/.local.vimrc +++ b/.local.vimrc @@ -4,5 +4,5 @@ " " [1]: http://www.vim.org/scripts/script.php?script_id=3393 " [2]: https://github.com/thinca/vim-localrc -let g:syntastic_python_flake8_args = '--ignore=W191,E501,E128,W291,E126' +let g:syntastic_python_flake8_args = '--ignore=W191,E501,E128,W291,E126,E101' let b:syntastic_checkers = ['flake8'] diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 0e5ed7c1..f324bce8 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -60,8 +60,8 @@ Programming style * The project uses *tabs for indentation* and *spaces for alignment*, this is also included in a vim modeline on top of every script file. -* Run your code through ``flake8 --ignore=W191,E501,E128,W291,E126`` to fix any - style errors. Use common sense regarding whitespace warnings, not all +* Run your code through ``flake8 --ignore=W191,E501,E128,W291,E126,E101`` to fix + any style errors. Use common sense regarding whitespace warnings, not all ``flake8`` warnings need to be fixed. * Trailing whitespace to indicate a continuing paragraph is OK in comments, documentation and commit messages.