blob: 0f1e2856470b14fd4e316670f373d139788dc0a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
Before:
call ale#assert#SetUpLinterTest('perl', 'perlcritic')
call ale#test#SetFilename('test.pl')
let g:ale_perl_perlcritic_profile = ''
After:
unlet! b:readme_path
call ale#assert#TearDownLinterTest()
Execute(The command should be correct with g:ale_perl_perlcritic_showrules off):
let b:ale_perl_perlcritic_showrules = 0
AssertLinter 'perlcritic', ale#Escape('perlcritic')
\ . ' --verbose ' . ale#Escape('%l:%c %m\n') . ' --nocolor'
Execute(The command should be correct with g:ale_perl_perlcritic_showrules on):
let b:ale_perl_perlcritic_showrules = 1
AssertLinter 'perlcritic', ale#Escape('perlcritic')
\ . ' --verbose ' . ale#Escape('%l:%c %m [%p]\n') . ' --nocolor'
Execute(The command search for the profile file when set):
let b:ale_perl_perlcritic_profile = 'README.md'
let b:readme_path = ale#path#Simplify(expand('%:p:h:h:h') . '/README.md')
AssertLinter 'perlcritic', ale#Escape('perlcritic')
\ . ' --verbose ' . ale#Escape('%l:%c %m\n') . ' --nocolor'
\ . ' --profile ' . ale#Escape(b:readme_path)
Execute(Extra options should be set appropriately):
let b:ale_perl_perlcritic_options = 'beep boop'
AssertLinter 'perlcritic', ale#Escape('perlcritic')
\ . ' --verbose ' . ale#Escape('%l:%c %m\n') . ' --nocolor'
\ . ' beep boop'
|