From 1022e41c64a74809cc3ca6b6a963ff0cf87a6cea Mon Sep 17 00:00:00 2001 From: Johannes Rothe Date: Fri, 17 Dec 2021 18:14:07 +0100 Subject: [PATCH] vimrc: pylint ignore missing docstrings --- roles/dotfiles/files/vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/dotfiles/files/vimrc b/roles/dotfiles/files/vimrc index 82c05c4..fb4f4bd 100644 --- a/roles/dotfiles/files/vimrc +++ b/roles/dotfiles/files/vimrc @@ -47,9 +47,10 @@ colorscheme sonokai let g:airline_theme = 'sonokai' " Ale -let g:ale_linters = {'python': ['flake8', 'pylint'],} +let g:ale_linters = {'python': ['pylint'],} let g:ale_fixers = {} let g:ale_fixers.python = ['black'] +let g:ale_python_pylint_options = '--disable=C0111' " Black let g:black_linelength = 80