mirror of https://github.com/dense-analysis/ale
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
Before:
|
|
Save g:ale_stylelint_options
|
|
|
|
let g:ale_stylelint_options = ''
|
|
|
|
call ale#assert#SetUpFixerTest('css', 'stylelint')
|
|
|
|
After:
|
|
call ale#assert#TearDownFixerTest()
|
|
|
|
Execute(The stylelint callback should return the correct default values):
|
|
call ale#test#SetFilename('../test-files/eslint/react-app/subdir/testfile.css')
|
|
|
|
AssertFixer
|
|
\ {
|
|
\ 'read_temporary_file': 0,
|
|
\ 'cwd': '%s:h',
|
|
\ 'command': (has('win32') ? 'node.exe ' : '')
|
|
\ . ale#Escape(ale#path#Simplify(g:dir . '/../test-files/eslint/react-app/node_modules/stylelint/bin/stylelint.js'))
|
|
\ . ' --fix --stdin --stdin-filename %s',
|
|
\ }
|
|
|
|
Execute(The stylelint callback should include custom stylelint options):
|
|
let g:ale_stylelint_options = '--cache'
|
|
call ale#test#SetFilename('../test-files/eslint/react-app/subdir/testfile.css')
|
|
|
|
AssertFixer
|
|
\ {
|
|
\ 'read_temporary_file': 0,
|
|
\ 'cwd': '%s:h',
|
|
\ 'command': (has('win32') ? 'node.exe ' : '')
|
|
\ . ale#Escape(ale#path#Simplify(g:dir . '/../test-files/eslint/react-app/node_modules/stylelint/bin/stylelint.js'))
|
|
\ . ' --cache --fix --stdin --stdin-filename %s',
|
|
\ }
|