1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:40:04 +08:00
SpaceVim/config/plugins/syntastic.vim

22 lines
1.0 KiB
VimL
Raw Normal View History

2016-12-26 21:11:19 +08:00
scriptencoding utf-8
if !filereadable('pom.xml') && !filereadable('build.gradle') && isdirectory('bin')
2017-03-06 23:26:26 +08:00
let g:syntastic_java_javac_options = '-d bin'
2016-12-26 21:11:19 +08:00
endif
let g:syntastic_java_javac_config_file_enabled = get(g:, 'syntastic_java_javac_config_file_enabled', 1)
let g:syntastic_java_javac_delete_output = get(g:, 'syntastic_java_javac_delete_output', 0)
let g:syntastic_always_populate_loc_list = get(g:, 'syntastic_always_populate_loc_list', 1)
let g:syntastic_auto_loc_list = get(g:, 'syntastic_auto_loc_list', 1)
let g:syntastic_check_on_open = get(g:, 'syntastic_check_on_open', 0)
let g:syntastic_check_on_wq = get(g:, 'syntastic_check_on_wq', 0)
2016-12-31 19:40:08 +08:00
let g:syntastic_error_symbol = get(g:, 'spacevim_error_symbol', '✖')
let g:syntastic_warning_symbol = get(g:, 'spacevim_warning_symbol', '➤')
let g:syntastic_info_symbol = get(g:, 'spacevim_info_symbol', '🛈')
let g:syntastic_vimlint_options = get(g:, 'syntastic_vimlint_options', {
2017-03-06 23:26:26 +08:00
\'EVL102': 1 ,
\'EVL103': 1 ,
\'EVL205': 1 ,
\'EVL105': 1 ,
\})
2017-03-06 23:26:26 +08:00
" vim:set et sw=2: