FYI.

A simple best practices linter.


Get started

View on Github


Usage

Installation

You need node.js to use fyi.

                npm install -g fyi-cli
            

Add FYI to a project

FYI uses npm so you need to have npm installed and a package.json in your projects directory.

                fyi-init
            

Use linting

                npm test
            

Linting with file watcher

                npm run test-watch
            

Ignored files

In your package.json:


...

"fyi": {
  "ignore": [
    "my_custom_ignore",
    "_*"
  ]
}

...