vimrc: pylint ignore missing docstrings
All checks were successful
dotfiles/pipeline/head This commit looks good

This commit is contained in:
Johannes Rothe 2021-12-17 18:14:07 +01:00 committed by Johannes Rothe
parent ea36b6da7b
commit 1022e41c64

View File

@ -47,9 +47,10 @@ colorscheme sonokai
let g:airline_theme = 'sonokai' let g:airline_theme = 'sonokai'
" Ale " Ale
let g:ale_linters = {'python': ['flake8', 'pylint'],} let g:ale_linters = {'python': ['pylint'],}
let g:ale_fixers = {} let g:ale_fixers = {}
let g:ale_fixers.python = ['black'] let g:ale_fixers.python = ['black']
let g:ale_python_pylint_options = '--disable=C0111'
" Black " Black
let g:black_linelength = 80 let g:black_linelength = 80