babel-plugin-typecheck
babel-plugin-typecheck copied to clipboard
Static and runtime type checking for JavaScript in the form of a Babel plugin.
The README includes a link to [flow-runtime](https://codemix.github.io/flow-runtime), but the link is broken. Has it moved to a different URL?
Adapt a code style and declare "lint" script. It is really hard to contribute to a codebase when it has not adapted code style. I am biased (author), but I...
``` jsx function foobar(DecoratedComponent) { return class Parent extends Component { state = { isActive: true } render() { const { isActive } = this.state; return ; } } }...