├── .circleci └── config.yml ├── CHANGELOG.md ├── README.md ├── are-we-flow-yet ├── package.json ├── test.js └── test ├── all └── two.js ├── half ├── one.js └── two.js └── one-line ├── five.js ├── four.js └── three.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/are-we-flow-yet/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/are-we-flow-yet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/are-we-flow-yet/HEAD/README.md -------------------------------------------------------------------------------- /are-we-flow-yet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/are-we-flow-yet/HEAD/are-we-flow-yet -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/are-we-flow-yet/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/are-we-flow-yet/HEAD/test.js -------------------------------------------------------------------------------- /test/all/two.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | module.exports = 1; 3 | -------------------------------------------------------------------------------- /test/half/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /test/half/two.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | module.exports = 1; 3 | -------------------------------------------------------------------------------- /test/one-line/five.js: -------------------------------------------------------------------------------- 1 | // @flows 2 | module.exports = 1; 3 | -------------------------------------------------------------------------------- /test/one-line/four.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | module.exports = 1; 3 | -------------------------------------------------------------------------------- /test/one-line/three.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | module.exports = 1; 3 | --------------------------------------------------------------------------------