mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
Added dartfmt fixer (#1683)
* Added dartfmt to Fixers * Added dartfmt specific documentation
This commit is contained in:
0
test/dart_files/testfile.dart
Normal file
0
test/dart_files/testfile.dart
Normal file
40
test/fixers/test_dartfmt_fixer_callback.vader
Normal file
40
test/fixers/test_dartfmt_fixer_callback.vader
Normal file
@@ -0,0 +1,40 @@
|
||||
Before:
|
||||
Save g:ale_dart_dartfmt_executable
|
||||
Save g:ale_dart_dartfmt_options
|
||||
|
||||
" Use an invalid global executable, so we don't match it.
|
||||
let g:ale_dart_dartfmt_executable = 'xxxinvalid'
|
||||
let g:ale_dart_dartfmt_options = ''
|
||||
|
||||
call ale#test#SetDirectory('/testplugin/test/fixers')
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
call ale#test#RestoreDirectory()
|
||||
|
||||
Execute(The dartfmt callback should return the correct default values):
|
||||
call ale#test#SetFilename('../dart_files/testfile.dart')
|
||||
|
||||
AssertEqual
|
||||
\ {
|
||||
\ 'read_temporary_file': 1,
|
||||
\ 'command': ale#Escape('xxxinvalid')
|
||||
\ . ' -w'
|
||||
\ . ' %t',
|
||||
\ },
|
||||
\ ale#fixers#dartfmt#Fix(bufnr(''))
|
||||
|
||||
Execute(The dartfmt callback should include custom dartfmt options):
|
||||
let g:ale_dart_dartfmt_options = "-l 80"
|
||||
call ale#test#SetFilename('../dart_files/testfile.dart')
|
||||
|
||||
AssertEqual
|
||||
\ {
|
||||
\ 'read_temporary_file': 1,
|
||||
\ 'command': ale#Escape('xxxinvalid')
|
||||
\ . ' -w'
|
||||
\ . ' ' . g:ale_dart_dartfmt_options
|
||||
\ . ' %t',
|
||||
\ },
|
||||
\ ale#fixers#dartfmt#Fix(bufnr(''))
|
||||
Reference in New Issue
Block a user