0.0.1 • Published 8 years ago

eslint-plugin-flow-remove-types v0.0.1

Weekly downloads
2
License
BSD-3-Clause
Repository
-
Last release
8 years ago

eslint-plugin-flow-remove-types

A preprocessor to remove Flow type annotations.

Installation

You'll first need to install ESLint:

$ npm install eslint --save-dev

Next, install eslint-plugin-flow-remove-types:

$ npm install eslint-plugin-flow-remove-types --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-flow-remove-types globally.

Usage

Add flow-remove-types to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "flow-remove-types"
    ]
}