hn • r/hackernews
Comment on: After 7 years in production, Scarf has reluctantly moved away from Haskell
(Note: I work on Python tooling.)> for some reason we need 2-3 static analysis tools just for typecheckingI don’t follow: you need one type checker, of which you have several options. It’s arguably not ideal to have more than one option, but you should never need to run more than one.- no tool understands each other's comment directivesIn general, all type checkers in Python support the `type: ignore` directive, since it’s standardized.> each tool reports a different error in your codebaseThis is a real problem, but I think you can avoid it (like most people do) by not mixing different tools t