1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 21:45:10 +01:00

Disable the Django plugin for now, breaks projects where it's not

installed
This commit is contained in:
2017-12-06 15:25:05 +01:00
parent ad850550e6
commit c76be8f5b7

3
.vimrc
View File

@@ -204,7 +204,8 @@ let g:ale_fixers = {}
" Python specific settings
let g:ale_fixers.python = ['isort']
" No silly 80-char line limit. Sorry pep-8. Also, Django support. Disable 'invalid name', 'missing docstring'
let g:ale_python_pylint_options="--max-line-length=120 --load-plugins pylint_django --disable=invalid-name,missing-docstring"
"let g:ale_python_pylint_options="--max-line-length=120 --load-plugins pylint_django --disable=invalid-name,missing-docstring"
let g:ale_python_pylint_options="--max-line-length=120 --disable=invalid-name,missing-docstring"
" Show errors or warnings in the statusline
let g:airline#extensions#ale#enabled = 1
" UI