Syntastic has this option to disable sign column: let g:syntastic_enable_signs = 0
I'm switching to ale and exptect the same, can you tell me we have similar option?
Should work with set signcolumn=no in .vimrc.
faster solution is let g:ale_set_signs = 0 in vimrc, see doc for more.
Most helpful comment
Should work with
set signcolumn=noin .vimrc.faster solution is
let g:ale_set_signs = 0in vimrc, see doc for more.