mirror of https://github.com/dense-analysis/ale
nix: handle versions past 2.9 (#4394)
This commit is contained in:
parent
87b4ab4e20
commit
4c5c47b593
|
@ -5,7 +5,7 @@
|
|||
function! ale_linters#nix#nix#Command(buffer, output, meta) abort
|
||||
let l:version = a:output[0][22:]
|
||||
|
||||
if l:version =~# '^\(2.[4-9]\|3\).*'
|
||||
if l:version =~# '^\(2.[4-9]\|2.[1-9][0-9]\+\|3\).*'
|
||||
return 'nix-instantiate --log-format internal-json --parse -'
|
||||
else
|
||||
return 'nix-instantiate --parse -'
|
||||
|
|
|
@ -85,6 +85,16 @@ Execute(The nix command should add 'log-format' option for nix version 2.9):
|
|||
\ 'nix-instantiate --log-format internal-json --parse -',
|
||||
\ ale_linters#nix#nix#Command('', ['nix-instantiate (Nix) 2.9.0pre20211206_ignored'], '')
|
||||
|
||||
Execute(The nix command should add 'log-format' option for nix version 2.10):
|
||||
AssertEqual
|
||||
\ 'nix-instantiate --log-format internal-json --parse -',
|
||||
\ ale_linters#nix#nix#Command('', ['nix-instantiate (Nix) 2.10.0pre20221221_ignored'], '')
|
||||
|
||||
Execute(The nix command should add 'log-format' option for nix version 2.20):
|
||||
AssertEqual
|
||||
\ 'nix-instantiate --log-format internal-json --parse -',
|
||||
\ ale_linters#nix#nix#Command('', ['nix-instantiate (Nix) 2.20.0pre20221221_ignored'], '')
|
||||
|
||||
Execute(The nix command should add 'log-format' option for nix version 3.0):
|
||||
AssertEqual
|
||||
\ 'nix-instantiate --log-format internal-json --parse -',
|
||||
|
|
Loading…
Reference in New Issue