@setstate/eslint-plugin-wepy

eslint plugin for wepy file

Usage no npm install needed!

<script type="module">
  import setstateEslintPluginWepy from 'https://cdn.skypack.dev/@setstate/eslint-plugin-wepy';
</script>

README

eslint-plugin-wepy

eslint plugin for wepy file

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-wepy:

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

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

Usage

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

{
    "plugins": [
        "wepy"
    ]
}

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

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

Supported Rules

  • Fill in provided rules here