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.
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=trueunder 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=trueoption enabled, no annotation should not be a reason for failing.