update ALE config

This commit is contained in:
ManjaroOne666 2019-01-18 21:23:41 +00:00
parent 1fd5e44cc4
commit 84588b06ca
1 changed files with 1 additions and 3 deletions

4
vimrc
View File

@ -191,11 +191,9 @@ if g:vimrc_load_dev_plugins
let g:ale_linters = {'scss': ['stylelint'], 'javascript': ['eslint'], 'php':['php'], 'python': ['flake8'], 'html':['htmlhint'], 'vue': ['eslint']}
let g:ale_html_htmlhint_options = '-c ~/.htmlhintrc --format=unix'
let g:ale_fixers = {'javascript': ['eslint'], 'vue': ['eslint']}
let g:ale_fixers = {'javascript': ['eslint'], 'python': ['black'], 'vue': ['eslint']}
let g:ale_sign_error = 'Α'
let g:ale_sign_warning = 'α'
let g:ale_lint_on_text_changed = 'never'
let g:ale_lint_on_enter = 0
nmap <space>af <Plug>(ale_fix)