Files
ale/test/handler/test_lilypond.vader
samb0t 6b63f4e70a Add support for LilyPond syntax (#5117)
* Add support for LilyPond syntax

See: https://lilypond.org/

* Fix alpha order of LilyPond

* Add support for custom executable and options to lilypond linter

Enhances the lilypond linter with configurable options:
- Add g:ale_lilypond_lilypond_executable for custom lilypond binary path
- Add g:ale_lilypond_lilypond_options for additional command-line flags
- Refactor linter to use GetCommand() function for dynamic command building
- Add linter tests covering configuration scenarios
- Update documentation with usage examples and proper formatting

---------

Co-authored-by: samb0t <sambottoni@gmail.com>
2026-04-10 23:09:18 +09:00

50 lines
1.1 KiB
Plaintext

Before:
runtime ale_linters/lilypond/lilypond.vim
call ale#linter#Reset()
Execute(The lilypond handler should parse a single error correctly):
AssertEqual
\ [
\ {
\ 'lnum': 2,
\ 'col': 5,
\ 'type': 'E',
\ 'text': 'syntax error, unexpected NOT_A_TOKEN',
\ }
\ ],
\ ale_linters#lilypond#lilypond#Handle(0, [
\ 'test.ly:2:5: error: syntax error, unexpected NOT_A_TOKEN'
\ ])
Execute(The lilypond handler should parse warnings and errors):
AssertEqual
\ [
\ {
\ 'lnum': 3,
\ 'col': 1,
\ 'type': 'W',
\ 'text': 'deprecated syntax',
\ },
\ {
\ 'lnum': 5,
\ 'col': 12,
\ 'type': 'E',
\ 'text': 'unknown symbol',
\ }
\ ],
\ ale_linters#lilypond#lilypond#Handle(0, [
\ 'test.ly:3:1: warning: deprecated syntax',
\ 'test.ly:5:12: error: unknown symbol'
\ ])
Execute(The lilypond handler should ignore non-matching lines):
AssertEqual
\ [],
\ ale_linters#lilypond#lilypond#Handle(0, [
\ 'This is some unrelated output',
\ 'Another line without structure'
\ ])
After:
call ale#linter#Reset()