mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
tests/{none-ls,efmls-configs}: disable tools requiring php-cs-fixer (marked as broken)
This commit is contained in:
parent
e1e0e6f024
commit
0ff025c210
2 changed files with 16 additions and 5 deletions
|
@ -23,7 +23,12 @@
|
|||
];
|
||||
|
||||
brokenTools =
|
||||
lib.optionals hostPlatform.isDarwin [
|
||||
[
|
||||
#TODO Added 2025-04-01
|
||||
# php-cs-fixer is marked as broken
|
||||
"php_cs_fixer"
|
||||
]
|
||||
++ lib.optionals hostPlatform.isDarwin [
|
||||
# As of 2024-01-04, texliveMedium is broken on darwin
|
||||
# TODO: re-enable those tests when fixed
|
||||
"chktex"
|
||||
|
|
|
@ -105,10 +105,16 @@
|
|||
|
||||
sources =
|
||||
let
|
||||
disabled = lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||
# Not available on aarch64-linux
|
||||
"smlfmt"
|
||||
];
|
||||
disabled =
|
||||
[
|
||||
#TODO Added 2025-04-01
|
||||
# php-cs-fixer is marked as broken
|
||||
"phpcsfixer"
|
||||
]
|
||||
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||
# Not available on aarch64-linux
|
||||
"smlfmt"
|
||||
];
|
||||
in
|
||||
# Enable every none-ls source that has an option
|
||||
lib.mapAttrs (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue