├── .circleci └── config.yml ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PATENTS ├── README.md ├── eslint-rules └── license-header.js ├── lib └── main.js ├── package.json └── resources ├── autocomplete.gif ├── diagnostics.gif ├── outline.png └── typehint.png /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/LICENSE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/PATENTS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/README.md -------------------------------------------------------------------------------- /eslint-rules/license-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/eslint-rules/license-header.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/package.json -------------------------------------------------------------------------------- /resources/autocomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/resources/autocomplete.gif -------------------------------------------------------------------------------- /resources/diagnostics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/resources/diagnostics.gif -------------------------------------------------------------------------------- /resources/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/resources/outline.png -------------------------------------------------------------------------------- /resources/typehint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/ide-flowtype/HEAD/resources/typehint.png --------------------------------------------------------------------------------