0.0.9 • Published 1 year ago
eslint-plugin-story-prefix-check v0.0.9
eslint-plugin-is-story-prefix
A Eslint plugin to check if the story files has the prefix
Installation
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-story-prefix-check
:
npm install eslint-plugin-story-prefix-check --save-dev
Usage
Add story-prefix-check
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"story-prefix-check"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"story-prefix-check/rule-name": 2
}
}
Rules
TODO: Run eslint-doc-generator to generate the rules list.