https://github.com/tmcw/are-we-flow-yet
A CLI tool that scans a source directory and gives statistics and a big list of files that are and are not flow-annotated.
https://github.com/tmcw/are-we-flow-yet
Last synced: over 1 year ago
JSON representation
A CLI tool that scans a source directory and gives statistics and a big list of files that are and are not flow-annotated.
- Host: GitHub
- URL: https://github.com/tmcw/are-we-flow-yet
- Owner: tmcw
- Created: 2015-12-21T15:01:13.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-05-11T05:42:38.000Z (about 7 years ago)
- Last Synced: 2025-03-16T01:55:47.347Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 10
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# are we flow yet
[](https://circleci.com/gh/tmcw/are-we-flow-yet/tree/master)
[](https://greenkeeper.io/)
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.
## install
npm install -g are-we-flow-yet
## usage
are-we-flow-yet src
## example
```
~/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
...
```