Notes on the Go Translation of Reposurgeon

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • reposurgeon

  • exhaustive

    Check exhaustiveness of switch statements of enum-like constants in Go source code.

  • > Able to have the confidence that we're checking for every situation that could occur on an enum type across the codebase is one less thing I need to worry about.

    golangci-lint is an absolute must, and it includes https://github.com/nishanths/exhaustive which will check this for you.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • mkcert

    A simple zero-config tool to make locally trusted development certificates with any names you'd like.

  • my 50 cents:

    I'd rather just use go vet + staticcheck. Way simpler, no complex configuration, and no license concerns :)

    and then you can create a file like the following and add whatever analyzer provides value for your specific case (including this exhaustive), easily. Example: https://github.com/FiloSottile/mkcert/blob/master/analysis.g...

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts