├── .editorconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── declarations ├── child_process.d.js ├── flow-bin.d.js ├── flow-to-jshint.d.js ├── fs.d.js ├── gulp-util.d.js ├── index.d.js ├── jshint-stylish.d.js ├── log-symbols.d.js ├── path.d.js ├── pollyfill.d.js ├── q.d.js └── through2.d.js ├── index.js ├── package.json ├── screencap.gif ├── test ├── .flowconfig ├── fixtures │ ├── broken-interfaces │ │ └── lib.js │ ├── declaration.js │ ├── hello.js │ └── interfaces │ │ └── lib.js └── main.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | !lib 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/README.md -------------------------------------------------------------------------------- /declarations/child_process.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/declarations/child_process.d.js -------------------------------------------------------------------------------- /declarations/flow-bin.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/declarations/flow-bin.d.js -------------------------------------------------------------------------------- /declarations/flow-to-jshint.d.js: -------------------------------------------------------------------------------- 1 | declare function flow() :any; 2 | -------------------------------------------------------------------------------- /declarations/fs.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/declarations/fs.d.js -------------------------------------------------------------------------------- /declarations/gulp-util.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/declarations/gulp-util.d.js -------------------------------------------------------------------------------- /declarations/index.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/declarations/index.d.js -------------------------------------------------------------------------------- /declarations/jshint-stylish.d.js: -------------------------------------------------------------------------------- 1 | declare module 'jshint-stylish' {} 2 | -------------------------------------------------------------------------------- /declarations/log-symbols.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/declarations/log-symbols.d.js -------------------------------------------------------------------------------- /declarations/path.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/declarations/path.d.js -------------------------------------------------------------------------------- /declarations/pollyfill.d.js: -------------------------------------------------------------------------------- 1 | declare module "polyfill.js" {} 2 | -------------------------------------------------------------------------------- /declarations/q.d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/declarations/q.d.js -------------------------------------------------------------------------------- /declarations/through2.d.js: -------------------------------------------------------------------------------- 1 | declare module 'through2.js' { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/package.json -------------------------------------------------------------------------------- /screencap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/screencap.gif -------------------------------------------------------------------------------- /test/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | [include] 3 | -------------------------------------------------------------------------------- /test/fixtures/broken-interfaces/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/test/fixtures/broken-interfaces/lib.js -------------------------------------------------------------------------------- /test/fixtures/declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/test/fixtures/declaration.js -------------------------------------------------------------------------------- /test/fixtures/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/test/fixtures/hello.js -------------------------------------------------------------------------------- /test/fixtures/interfaces/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/test/fixtures/interfaces/lib.js -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/test/main.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stcheng/gulp-flowtype/HEAD/yarn.lock --------------------------------------------------------------------------------