Skip to content

Commit b9be6d0

Browse files
MershoMrLuje
authored andcommitted
WIP: remove disable-next-line RedundantNewKeyword
1 parent f282341 commit b9be6d0

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

src/FSharpLint.Client/FSharpLintToolLocator.fs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,12 +223,10 @@ let createFor (startInfo: FSharpLintToolStartInfo) : Result<RunningFSharpLintToo
223223

224224
match startProcess processStart with
225225
| Ok daemonProcess ->
226-
// fsharplint:disable-next-line RedundantNewKeyword
227226
let handler = new HeaderDelimitedMessageHandler(
228227
daemonProcess.StandardInput.BaseStream,
229228
daemonProcess.StandardOutput.BaseStream)
230229

231-
// fsharplint:disable-next-line RedundantNewKeyword
232230
let client = new JsonRpc(handler)
233231

234232
do client.StartListening()

src/FSharpLint.Console/Program.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ let private start (arguments:ParseResults<ToolArgs>) (toolsPath:Ionide.ProjInfo.
9292
()
9393

9494
if arguments.Contains ToolArgs.Daemon then
95-
// fsharplint:disable-next-line RedundantNewKeyword
9695
let daemon = new FSharpLintDaemon(Console.OpenStandardOutput(), Console.OpenStandardInput())
9796
AppDomain.CurrentDomain.ProcessExit.Add(fun _ -> (daemon :> IDisposable).Dispose())
9897

tests/FSharpLint.Client.Tests/TestClient.fs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ open Contracts
77
open LSPFSharpLintService
88
open LSPFSharpLintServiceTypes
99

10-
// fsharplint:disable RedundantNewKeyword
11-
1210
let (</>) x y = Path.Combine(x, y)
1311

1412
let basePath = TestContext.CurrentContext.TestDirectory </> ".." </> ".." </> ".." </> ".." </> ".."

0 commit comments

Comments
 (0)