Reputation: 154
I have a small project to test out facebook flow. I have purposefully placed some type errors that flow picks up, and they are successfully detected when running flow check
from the command line.
I would like to display them directly on Atom, when viewing the file(s), but currently it shows 0 errors (about 20 in the project when running from command line). Here is what I've done:
.flowconfig
file in the project/* @flow */
flow check
from the project directoryI have the following OS versions:
Here are my settings for Nuclide flow:
Here is what I get when running flow on the command line:
Here is what I get when viewing file on Atom:
Upvotes: 5
Views: 4232
Reputation: 154
I have actually just made it work by doing the following:
brew upgrade flow
(or sudo brew upgrade flow
if you need to)Upvotes: 5