this post was submitted on 12 May 2025
8 points (100.0% liked)

Programming

20183 readers
227 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
 

Biome is an integrated linter/formatter for JavaScript/TypeScript, CSS, HTML and GraphQL.

We are now in the process of implementing TypeScript-like inference (not full type checking!) that allows us to enable type-informed lint rules. This is similar to typescript-eslint except instead of using tsc we attempt to implement the inference ourselves.

This post describes our progress thus far, with a detailed overview of our type architecture.

top 1 comments
sorted by: hot top controversial new old
[–] FizzyOrange 1 points 4 days ago

Interesting. I guess as long as it doesn't have any false positives this seems like an ok idea.

Still, it would be definitely better if it could use tsc. They mention this... but don't really say if the Go version of tsc will allow it. IMO the slowness of tsc is largely overblown.