Skip to content

Commit c1fb125

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

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
@@ -132,7 +132,6 @@ let private start (arguments:ParseResults<ToolArgs>) (toolsPath:Ionide.ProjInfo.
132132
Environment.Exit 0
133133

134134
if arguments.Contains ToolArgs.Daemon then
135-
// fsharplint:disable-next-line RedundantNewKeyword
136135
let daemon = new FSharpLintDaemon(Console.OpenStandardOutput(), Console.OpenStandardInput())
137136
AppDomain.CurrentDomain.ProcessExit.Add(fun _ -> (daemon :> IDisposable).Dispose())
138137

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)