eslint-plugin-asp
v0.0.8
Published
asp
Maintainers
Readme
eslint-plugin-asp
asp
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-asp:
npm install eslint-plugin-asp --save-devUsage
In your configuration file, import the plugin eslint-plugin-asp and add asp to the plugins key:
import { defineConfig } from "eslint/config";
import asp from "eslint-plugin-asp";
export default defineConfig([
{
plugins: {
asp
}
}
]);Then configure the rules you want to use under the rules key.
import { defineConfig } from "eslint/config";
import asp from "eslint-plugin-asp";
export default defineConfig([
{
plugins: {
asp
},
rules: {
"asp/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.
