summaryrefslogtreecommitdiff
path: root/modules/ale.vim
blob: ce2680d4bc2249dbddc7bc20b676d8e5523a24fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"Enable ale linters"
let g:ale_linters = {
    \ 'cpp' : ['gcc'],
    \ 'c' : ['gcc'],
    \ 'vim' : ['vint'],
    \ 'python': ['pyls','pydocstyle', 'pycodestyle'],
    \ 'javascript': []
    \}

let g:ale_fixers = {
\   '*': ['remove_trailing_lines', 'trim_whitespace'],
\   'python': ['yapf'],
\}