Hacker News new | ask | show | jobs
by all2 2657 days ago
I've been using TypeScript type checking in JS recently, and I went back to python and was wanting type checking. It was a weird feeling.

Would there be a way to build this into a plugin for Atom or VS code?

1 comments

Have you seen/are you using type hinting (available in python 3.5+) Most IDEs have support for type hinting.

https://www.python.org/dev/peps/pep-0484/

I have not! Thank you!