mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
* add support for fortitude fortran linter * add fortitude fortran linter doc * Add a fortitude linter test file * docs listings are now alphabetically sorted Co-Authored-By: gomfol12 <info@marekb.de>
17 lines
517 B
Plaintext
17 lines
517 B
Plaintext
Before:
|
|
call ale#assert#SetUpLinterTest('fortran', 'fortitude')
|
|
|
|
After:
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
Execute(The default fortitude command should be correct):
|
|
AssertLinter 'fortitude', ale#Escape('fortitude')
|
|
\ . ' check --output-format json %s'
|
|
|
|
Execute(fortitude should be configurable):
|
|
let b:ale_fortran_fortitude_executable = 'custom-exe'
|
|
let b:ale_fortran_fortitude_options = '--foobar'
|
|
|
|
AssertLinter 'custom-exe', ale#Escape('custom-exe')
|
|
\ . ' check --output-format json --foobar %s'
|