blob: 9142c441514e128f45c1b4c0c8dde0e8daa95fec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Before:
call ale#assert#SetUpLinterTest('sass', 'sasslint')
call ale#test#SetFilename('test.sass')
After:
call ale#assert#TearDownLinterTest()
Execute(The default sasslint command should be correct):
AssertLinter 'sass-lint',
\ ale#path#CdString(expand('%:p:h'))
\ . ale#Escape('sass-lint') . ' -v -q -f compact %t'
|