blob: d5fd457bd42f38704b716bf042e91fbb315c4182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Before:
call ale#assert#SetUpLinterTest('cpp', 'cpplint')
After:
call ale#assert#TearDownLinterTest()
Execute(The executable should be configurable):
AssertLinter 'cpplint', ale#Escape('cpplint') . ' %s'
let b:ale_cpp_cpplint_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' %s'
Execute(The options should be configurable):
let b:ale_cpp_cpplint_options = '--something'
AssertLinter 'cpplint', ale#Escape('cpplint') . ' --something %s'
|