![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
flow-annotation-check
Advanced tools
Check your files for the presence of the `@flow` and `@flow weak` annotations
Verify the @flow
and @flow weak
annotations in your javascript files.
Install with NPM:
npm install flow-annotation-check
or use the global flag to easily run from bash:
npm install --global flow-annotation-check
Once installed you can import flow-annotation-check
into your own module and have the checker return a list of files for you to further process.
const flowAnnotationCheck = require('flow-annotation-check');
The most useful methods are:
genReport(folder: string, config: Config): Promise<Array<FileReport>>
getStatus(filePath: string): Promise<FlowStatus>
The types involved are:
type Glob = string; // See https://github.com/isaacs/node-glob
type Config = {
include: Array<Glob>,
exclude: Array<Glob>,
absolute: boolean,
};
type FlowStatus = 'flow' | 'flow weak' | 'no flow';
type FileReport = {
file: string,
status: FlowStatus,
};
If you want to check a whole project at once, then call genReport
. You can pass in the root folder, like ~/my-project/src
and then a configuration object with some glob strings to find your files. genReport
will return a Promise that will resolve when all matching files have had their flow-status discovered.
This is a convienence method to make working with globs and mapping over getStatus
easier. Each file is tested serially in order to avoid setting really long timeouts that lock up the flow server.
flowAnnotationCheck.genReport(
'~/path/to/project',
{
include: ['**/*.js'],
exclude: ['**/*.coffee'],
absolute: true,
}
).then((entries) => {
entries.forEach((entry) => {
console.log(entry.status + "\t" + entry.file);
});
});
If you're checking one file at a time then go ahead and call getStatus
directly. This takes a string that will be passed directly into flow
on the command line.
const file = '~/path/to/project/src/main.js';
flowAnnotationCheck.getStatus(file).then((status) => {
console.log(`The status of ${file} is ${status}`);
});
If you don't want to install the package globally you can run flow-annotation-check
from the CLI by adding it to your package.json
file:
{
"dependencies": {
"flow-annotation-check": "^1.0.0"
},
"scripts": {
"annotations": "flow-annotation-check"
}
}
Then run that script:
npm run annotations
or if installed globally:
flow-annotation-check ~/path/to/project
The available commands can be found by running flow-annotation-check -h
or npm run annotations -- --help
.
The common settings you will use are:
-i
, --include
Glob for files to include. Can be set multiple times.-x
, --exclude
Glob for files to exclude. Can be set multiple times.-a
, --absolute
Report absolute path names. The default is to report only filenames.Setting --exclude
will override the defaults. So don't forget to ignore node_modules/**/*.js
in addition to project specific folders.
You can also configure cli arguments directly inside your package.json file. Example:
{
"dependencies": {
"flow-annotation-check": "^1.0.0"
},
"flow-annotation-check": {
"absolute": false,
"allow_weak": false
"exclude": ['+(node_modules|build|flow-typed)/**/*.js'],
"flow_path": "flow"
"include": ['**/*.js'],
"root": "."
}
}
Flow has some internal limits on what annotations it will detect. This might mean some files might not report errors when you run flow check
on the cli (see docblock.ml in facebook/flow). You can use the validate
command to verify your existing annotations.
:bangbang::warning: Save your work because --validate
will modify files in your local filesystem. :warning::bangbang:
flow-annotation-check --validate
FAQs
Check your files for the presence of the `@flow` and `@flow weak` annotations
The npm package flow-annotation-check receives a total of 6,600 weekly downloads. As such, flow-annotation-check popularity was classified as popular.
We found that flow-annotation-check demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.