You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm starting a new project from scratch and want to have things type checked with Flow as best as I can from the start. To that end, I'm using all=true under the [options] section of my .flowconfig. with all of my code in {project dir}/src, I run the coverage tool as:
yarn run flow-coverage-report -i src/**/*.js
All of the files come back marked red/failing due to no flow annotation regardless of coverage %, which makes it more annoying to identify which files actually need attention. With the all=true option enabled, no annotation should not be a reason for failing.
The text was updated successfully, but these errors were encountered:
I'm starting a new project from scratch and want to have things type checked with Flow as best as I can from the start. To that end, I'm using
all=true
under the[options]
section of my.flowconfig
. with all of my code in{project dir}/src
, I run the coverage tool as:All of the files come back marked red/failing due to no flow annotation regardless of coverage %, which makes it more annoying to identify which files actually need attention. With the
all=true
option enabled, no annotation should not be a reason for failing.The text was updated successfully, but these errors were encountered: