0.0.0 • Published 6 months ago

eslint-plugin-sev-legacy-plugin v0.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

eslint-plugin-sev-legacy-plugin

Plugin for projects with eslint <=9.0.0

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-sev-legacy-plugin:

npm install eslint-plugin-sev-legacy-plugin --save-dev

Usage

In your configuration file, import the plugin eslint-plugin-sev-legacy-plugin and add sev-legacy-plugin to the plugins key:

import sev-legacy-plugin from "eslint-plugin-sev-legacy-plugin";

export default [
    {
        plugins: {
            sev-legacy-plugin
        }
    }
];

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

import sev-legacy-plugin from "eslint-plugin-sev-legacy-plugin";

export default [
    {
        plugins: {
            sev-legacy-plugin
        },
        rules: {
            "sev-legacy-plugin/rule-name": "warn"
        }
    }
];

Configurations

TODO: Run eslint-doc-generator to generate the configs list (or delete this section if no configs are offered).

Rules

TODO: Run eslint-doc-generator to generate the rules list.

0.0.0

6 months ago