Stream in JetBrains / IntelliJ IDEA

It seems that JetBrains supports type stream controller , but I do not see stream error in IDE.

Is there any way to enable it?

+3
source share
3 answers

The flow controller is not supported, please follow WEB-14254 for updates. The idea just supports stream syntax (static typing). See http://blog.jetbrains.com/webstorm/2015/09/webstorm-11-eap-142-5255/

+3
source

I put together an experimental plugin that integrates stream error reporting into IDEA / WebStorm as error annotations:

https://github.com/dsilva/webstorm-plugin-flow-typecheck/releases

+2
source

@lena is correct.

As an aside, I start the stream through the npm panel. While flow is a script in your package.json , I started by right-clicking on package.json and Show npm scripts . Then simply double-click flow or re-run it in the Run panel.

0
source

Source: https://habr.com/ru/post/1239025/


All Articles