exhaustive VS ionide-vscode-fsharp

Compare exhaustive vs ionide-vscode-fsharp and see what are their differences.

exhaustive

Check exhaustiveness of switch statements of enum-like constants in Go source code. (by nishanths)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
exhaustive ionide-vscode-fsharp
11 16
271 841
- 1.0%
6.2 8.7
5 days ago 1 day ago
Go F#
BSD 2-clause "Simplified" License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

exhaustive

Posts with mentions or reviews of exhaustive. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-29.
  • Compile-time safety for enumerations in Go
    3 projects | news.ycombinator.com | 29 Sep 2023
    This is an analyzer that will catch this: https://github.com/nishanths/exhaustive

    I believe it's in golangci-lint.

  • Tools besides Go for a newbie
    36 projects | /r/golang | 26 Mar 2023
    I agree linters in general are quite useful for Go though. The default suite from golangci-lint is quite good. I would also recommend enabling exhaustive if you're working with a codebase that uses "enums" (full disclosure, I contributed a bit to that project).
  • What “sucks” about Golang?
    17 projects | /r/golang | 10 Mar 2023
    there’s a linter for exhaustive matching: https://github.com/nishanths/exhaustive
  • Rusty enums in Go
    5 projects | /r/golang | 16 Feb 2023
    I tried to find that linter and found this: exhaustive
  • Supporting the Use of Rust in the Chromium Project
    11 projects | /r/rust | 13 Jan 2023
    And in Go you'd use a linter, like this one.
  • Blog on enums in Go: benchmarks; issues; assembly
    2 projects | /r/golang | 16 Nov 2022
    this is AST go vet analyzer that performs just that: https://github.com/nishanths/exhaustive (too bad it can not do struct based enums..)
  • Rust Is Hard, Or: The Misery of Mainstream Programming
    15 projects | news.ycombinator.com | 2 Jun 2022
    >> the main thing missing from Go is ADT's. After using these in Rust and Swift, a programming language doesn't really feel complete without them

    What are the differences between an ADT (plus pattern matching i’d reckon?) in Rust/Swift vs the equiv in Go (tagged interfaces + switch statement)?

    One has exhaustive matching at compile time, the other has a default clause (non exhaustive matching), although there’s an important nub here with respect to developer experience; it would be idiomatic in Go to use static analysis tooling (e.g. Rob Pike is on record saying that various checks - inc this one - don’t belong in the compiler and should live in go vet). I’ve been playing with Go in a side project and using golint-ci which invokes https://github.com/nishanths/exhaustive - net result, in both go and rust, i get a red line of text annotated at the switch in vscode if i miss a case.

    Taking a step back, there isn’t a problem you can solve with one that you can’t solve with the other, or is there?

    To take a step further back, why incomplete?

  • Why are enums not a thing in Go?
    5 projects | /r/golang | 22 May 2022
    Use a linter.
  • 1.18 is released
    6 projects | /r/golang | 15 Mar 2022
    For an exhaustive linter, were you referring to this? It looks pretty nice. If it's possible to check this with static analysis, is it something that could be in the compiler itself in the future?
  • Go Replaces Interface{} with 'Any'
    10 projects | news.ycombinator.com | 14 Dec 2021
    https://github.com/nishanths/exhaustive

    here, have fun. You’re gonna write some tests, make new types to satisfy interfaces for testing, and then wind up with branches for your test paths in your live code, but go for it, I guess. You know everything! I am but a simple blubbite, too dim, too dim to get it.

ionide-vscode-fsharp

Posts with mentions or reviews of ionide-vscode-fsharp. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-17.
  • Ask HN: Why do you think F# is not more popular, even within the .NET ecosystem?
    1 project | news.ycombinator.com | 15 Apr 2023
  • Is there a modern IDE with good support for OCaml?
    2 projects | /r/ocaml | 17 Oct 2022
    I'd love to see something similar to Microsoft's Ionide project or for JetBrains to invest in IDE support.
  • Why OCaml?
    5 projects | news.ycombinator.com | 27 Sep 2022
    > Pretty good, https://ionide.io

    It pains me to admit it because I really like F# but, with due respect to the developers, Ionide and its related projects are the most unstable toolchain I've ever used.

    Spend half a day reloading the editor because the extension keeps hanging on non-trivial MSBuild only to discover that the formatter has truncated in half one of the files you worked on due to a soundness bug. (OCaml's editor support, in contrast, is quite stable.)

    Rider is the best editing experience I've had with F#, by far.

  • How to get a non-broken F# development experience?
    4 projects | /r/fsharp | 5 Sep 2022
    I know it's a recurring topic but it's reaching a high level of pain *again* (see NET SDK 6.0.400 and 7.0.100 previews don't currently work with Ionide).
  • The Case for C# and .NET
    18 projects | news.ycombinator.com | 24 Jul 2022
    I don't disagree but it owes a lot of that to OCaml. That said, since we're talking about C#, F# and VS Code I'm gonna talk about a pet peeve I have. If you open a C# project in VS Code when the "Ionide" (basically the F# plugin for Code) is installed then Ionide thinks it's a F# project and will open some F# stuff after a few seconds (or prompt you to setup some F# stuff in its gitignore). The root cause has been identified (plugin activates when it sees a ".sln" file), a PR have been opened and rejected with no mention as to why (https://github.com/ionide/ionide-vscode-fsharp/pull/1401) and the developers behind it are frustratingly non-communicative about it, closing issues about it (https://github.com/ionide/ionide-vscode-fsharp/issues/1701). Usual rules about OSS maintainers apply, they don't technically owe us users anything ... but man it feels like we're being trolled by now :D
  • Rust Is Hard, Or: The Misery of Mainstream Programming
    15 projects | news.ycombinator.com | 2 Jun 2022
    F# doesn't have a hard dependency on vscode. Resources from MS will obviously encourage using MS tooling, but ionide [1] is really good. The lsp+neovim workflow is not as good but getting better.

    [1] https://ionide.io/

  • Making Ionide less "intrusive" in its new vscode version
    1 project | /r/fsharp | 28 Apr 2022
    Important thread about this: https://github.com/ionide/ionide-vscode-fsharp/issues/1693
  • Perf Avore: A Rule Based CrossPlatform Performance Based Monitoring and Analysis Tool
    5 projects | dev.to | 20 Dec 2021
    Perf Avore was developed on VSCode using the ionide plugin and dotnet cli.
  • A few newbie questions
    2 projects | /r/fsharp | 18 Nov 2021
    I was on .Net 5 but same issue on 6. I tried the fix here- setting FSharp.dotnetRoot explicitly in settings.json and so far it seems better.
  • Debugging tests in VS Code
    1 project | /r/fsharp | 16 Sep 2021
    Make sure to keep an eye on this MR for that very capability :)

What are some alternatives?

When comparing exhaustive and ionide-vscode-fsharp you can also consider the following projects:

golangci-lint - Fast linters Runner for Go

playwright-dotnet - .NET version of the Playwright testing and automation library.

reposurgeon

proposal-pipeline-operator - A proposal for adding a useful pipe operator to JavaScript.

go-optional - A library that provides Go Generics friendly "optional" features.

Feliz - A fresh retake of the React API in Fable and a collection of high-quality components to build React applications in F#, optimized for happiness

Ionide-vim - F# Vim plugin based on FsAutoComplete and LSP protocol

Perla - A cross-platform tool for unbundled front-end development that doesn't depend on Node or requires you to install a complex toolchain

enumcheck - Allows to mark Go enum types as exhaustive.

jakt - The Jakt Programming Language

server

Escalin