vimrc: disable pylint bad-continuation
All checks were successful
dotfiles/pipeline/head This commit looks good

This commit is contained in:
Johannes Rothe 2022-02-15 17:04:29 +01:00 committed by Johannes Rothe
parent 2f0abfda38
commit 1de3ee069a

View File

@ -70,7 +70,7 @@ let g:airline_theme = 'sonokai'
" Ale
let g:ale_linters = {'python': ['pylint', 'mypy'],}
let g:ale_fixers = {'python': ['black', 'isort']}
let g:ale_python_pylint_options = '--disable=C0111'
let g:ale_python_pylint_options = '--disable=C0111,C0330'
let g:ale_python_mypy_options = '--ignore-missing-imports --disallow-untyped-defs --disallow-incomplete-defs'
" Black