We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e39488b commit 03dd34bCopy full SHA for 03dd34b
server/src/incrementalCompilation.ts
@@ -683,7 +683,12 @@ async function compileContents(
683
) ||
684
// The `Multiple definition of the <kind> name <name>` type error's
685
// message includes the filepath with LOC of the duplicate definition
686
- d.message.includes("Multiple definition of the")
+ d.message.startsWith("Multiple definition of the") ||
687
+ // The signature mismatch, with mismatch and ill typed applicative functor
688
+ // type errors all include the filepath with LOC
689
+ d.message.startsWith("Signature mismatch") ||
690
+ d.message.startsWith("In this `with' constraint") ||
691
+ d.message.startsWith("This `with' constraint on")
692
)
693
) {
694
hasIgnoredErrorMessages = true;
0 commit comments