npm.io
1.0.0 • Published 8 years ago

eslint-plugin-alteryx

Licence
ISC
Version
1.0.0
Deps
1
Size
11 kB
Vulns
0
Weekly
0

eslint-plugin-alteryx

A plugin for custom alteryx rules.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-alteryx:

$ npm install eslint-plugin-alteryx --save-dev

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

Usage

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

{
    "plugins": [
        "alteryx"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "alteryx/rule-name": 2
    }
}

Supported Rules

  • contains-config
  • no-visible-password

Keywords