aboutsummaryrefslogtreecommitdiff
path: root/plugin/ale.vim
blob: 4efc1376772f25f45c98afff948053395640fb48 (plain)
1
2
3
4
5
6
7
8
let g:ale_pattern_options = {'\.py$': {'ale_enabled': 1}}
let g:ale_linters = {'python': ['pycodestyle'] }
let g:ale_fixers =
    \ {
    \   'python': ['black', 'isort', 'remove_trailing_lines', 'trim_whitespace'],
    \   'bash': ['remove_trailing_lines', 'trim_whitespace']
    \ }

..