Add pylintrc and black to vim
This commit is contained in:
parent
b1d881d3a3
commit
41801dc496
2 changed files with 7 additions and 1 deletions
5
dotfiles/pylintrc
Normal file
5
dotfiles/pylintrc
Normal file
|
@ -0,0 +1,5 @@
|
|||
[MESSAGES CONTROL]
|
||||
disable = C0330, C0326
|
||||
|
||||
[format]
|
||||
max-line-length = 88
|
|
@ -47,10 +47,11 @@ call vundle#begin()
|
|||
" let Vundle manage Vundle, required
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
|
||||
" AUTOCOMPLETION AND LINTING
|
||||
" AUTOCOMPLETION, FORMATTING AND LINTING
|
||||
Plugin 'ycm-core/YouCompleteMe' " Main autocompletion
|
||||
Plugin 'nvie/vim-flake8' " PEP8 linting for Python
|
||||
Plugin 'dense-analysis/ale' " Vim integration for various linters
|
||||
Plugin 'psf/black' " Black autoformatter for Python
|
||||
|
||||
" HIGHLIGHTING
|
||||
Plugin 'ntpeters/vim-better-whitespace' " Whitespace highlighting and removal
|
||||
|
|
Loading…
Add table
Reference in a new issue