summaryrefslogtreecommitdiff
path: root/modules/ale.vim
blob: 0c72d685fc9c52bd6c38cab9149c50e55414a1a2 (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': ['pydocstyle', 'pycodestyle'],
    \ 'javascript': []
    \}

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