.flowconfig [include]
The [include]
section in a .flowconfig
file tells Flow to include the
specified files or directories. Including a directory recursively includes all
the files under that directory. Symlinks are followed as long as they lead to a
file or directory that is also included. Each line in the include section is a
path to include. These paths can be relative to the root directory or absolute,
and support both single and double star wildcards.
The project root directory (where your .flowconfig
lives) is automatically
included.
For example, if /path/to/root/.flowconfig
contains the following [include]
section:
[include]
../externalFile.js
../externalDir/
../otherProject/*.js
../otherProject/**/coolStuff/
Then when Flow checks the project in /path/to/root
, it will read and watch
/path/to/root/
(automatically included)/path/to/externalFile.js
/path/to/externalDir/
- Any file in
/path/to/otherProject/
that ends in.js
- Any directory under
/path/to/otherProject
namedcoolStuff/