A CLI tool that scans a source directory and gives statistics and a big list of files that are and are not flow-annotated.
This works by scanning the first 100 characters of
each file and finding /* @flow */ or // @flow
comments.
npm install -g are-we-flow-yet
are-we-flow-yet src
~/src/app〉../are-we-flow-yet/are-we-flow-yet src
flow files 123
non flow files 200
src/account_components/apps/index.js
src/account_components/tokens/token_modal.js
src/admin_components/index.js
src/admin_components/orders/edit.js
...