From 8cae31408ea74778380e7a1ae35ae60e9d2a57ca Mon Sep 17 00:00:00 2001 From: Raphael Amorim Date: Mon, 15 Sep 2025 14:30:03 +0200 Subject: [PATCH] fix: windows lint for number --- internal/lsp/watcher/rlimit_stub.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/lsp/watcher/rlimit_stub.go b/internal/lsp/watcher/rlimit_stub.go index e016c403486b8d947a87edaf90e01643d01efed4..e60cf27d80bae21fe326f2b584dd32aac03130d4 100644 --- a/internal/lsp/watcher/rlimit_stub.go +++ b/internal/lsp/watcher/rlimit_stub.go @@ -8,5 +8,5 @@ func MaximizeOpenFileLimit() (int, error) { // Windows and other non-Unix systems don't have file descriptor limits // in the same way Unix systems do. Return a very high value to indicate // there's no practical limit to worry about. - return 10_000_000, nil // 10M handles - way more than any process would use + return 10000000, nil // 10M handles - way more than any process would use } \ No newline at end of file