Merge pull request #1252 from nthapaliya/fish-shell-linter

Fish shell linter
This commit is contained in:
w0rp
2018-01-02 13:32:59 +00:00
committed by GitHub
5 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
Before:
runtime ale_linters/fish/fish.vim
After:
call ale#linter#Reset()
Execute(The fish handler should handle basic warnings and syntax errors):
AssertEqual
\ [
\ {
\ 'lnum': 20,
\ 'col': 23,
\ 'text': "Unsupported use of '||'. In fish, please use 'COMMAND; or COMMAND'.",
\ },
\ {
\ 'lnum': 26,
\ 'col': 7,
\ 'text': "Illegal command name '(prompt_pwd)'",
\ },
\ {
\ 'lnum': 36,
\ 'col': 1,
\ 'text': "'end' outside of a block",
\ },
\ ],
\ ale_linters#fish#fish#Handle(1, [
\ "fish_prompt.fish (line 20): Unsupported use of '||'. In fish, please use 'COMMAND; or COMMAND'.",
\ 'if set -q SSH_CLIENT || set -q SSH_TTY',
\ ' ^',
\ "fish_prompt.fish (line 26): Illegal command name '(prompt_pwd)'",
\ ' (prompt_pwd) \',
\ ' ^',
\ "fish_prompt.fish (line 36): 'end' outside of a block",
\ 'end',
\ '^',
\ 'config.fish (line 45):',
\ "abbr --add p 'cd ~/Projects'",
\ '^',
\ ])