Skip to content

Commit 563b0d9

Browse files
committed
tests/none-ls: enable on darwin
Sandbox limit fixed.
1 parent 708c601 commit 563b0d9

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

tests/test-sources/plugins/by-name/none-ls/default.nix

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@
100100
in
101101
{
102102
plugins.none-ls = {
103-
# sandbox-exec: pattern serialization length 159032 exceeds maximum (65535)
104-
enable = !hostPlatform.isDarwin;
103+
enable = true;
105104

106105
sources =
107106
let
@@ -125,6 +124,21 @@
125124
++ lib.optionals hostPlatform.isDarwin [
126125
# TODO 2025-04-20 build failure
127126
"ansiblelint"
127+
# TODO 2025-06-24 build failure
128+
"elm_format"
129+
# TODO 2025-06-24 marked broken / unsupported platform
130+
"clazy"
131+
"haml_lint"
132+
"racket_fixw"
133+
"raco_fmt"
134+
"rubyfmt"
135+
]
136+
++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isx86_64) [
137+
# TODO: 2025-06-24 build failure
138+
"gleam_format"
139+
"ptop"
140+
# NOTE: No hash for x86 darwin
141+
"verible_verilog_format"
128142
];
129143
in
130144
# Enable every none-ls source that has an option

0 commit comments

Comments
 (0)