From b800552fcb4b8c6af6282b88e840a071c910760c Mon Sep 17 00:00:00 2001 From: ManjaroOne666 Date: Sun, 2 Jun 2019 13:30:35 +0100 Subject: [PATCH] coc/ALE updates for python config --- config/plugins.nvim.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/plugins.nvim.vim b/config/plugins.nvim.vim index c327b3f..cf6c9fa 100644 --- a/config/plugins.nvim.vim +++ b/config/plugins.nvim.vim @@ -21,7 +21,7 @@ let g:ale_fix_on_save_ignore = { 'vue': ['eslint'] } let g:ale_linters = {'scss': ['stylelint'], 'javascript': ['eslint'], 'json': ['jsonlint'], 'php':['php'], 'python': [], 'html':['htmlhint'], 'vue': []} - let g:ale_fixers = {'scss': ['prettier'], 'javascript': ['eslint'], 'json': ['jq'], 'python': ['black'], 'vue': ['eslint']} + let g:ale_fixers = {'scss': ['prettier'], 'javascript': ['eslint'], 'json': ['jq'], 'python': [], 'vue': ['eslint']} let g:ale_html_htmlhint_options = '-c ~/.htmlhintrc --format=unix'