The ESLint plugin for Storybook aims to help steer developers into using the best practices when writing their stories. The rules should be auto-fixable when possible, to improve the developer experience as much as we can.
First of all, thank you so much for taking the time to contribute to this project.
Run the following command and answer the prompts:
pnpm run generate-rule
This command will generate the rule file, tests as well as the documentation page. The generated files will look like this:
docs/rules/<rule-name>.md
lib/rules/<rule-name>.js
tests/lib/rules/<rule-name>.js
This command will auto-generate the test file with an example for you. Please refer to existing tests if more reference is needed.
import { CategoryId } from '../utils/constants'
module.exports = {
meta: {
severity: 'error', // whether the rule should yield 'warn' or 'error'
docs: {
categories: [CategoryId.RECOMMENDED], // You should always use an existing category from the CategoryId enum], or create a new one there
excludeFromConfig: true, // If the rule is not ready to be shipped in any category, set this flag to true, otherwise remove it
},
},
...otherProperties,
}
Run the following command for testing the rules:
pnpm run test --watch
If you want to run tests for a particular rule and skip the rest, you can do so like this:
ruleTester.run('my-rule-name', rule, {
valid: [
'export default { component: Button }',
],
invalid: [
{
only: true, // <-- Add this property, which is equivalent to it.only in jest
code: "export default { title: 'Button', component: Button }",
errors: [ ... ],
},
]
})
When you make changes to rules or create/delete rules, the configuration files and documentation have to be updated. For that, run the following command:
pnpm run update-all
- The ESLint official developer guide can be useful to assist when writing rules
- The AST Explorer website is the perfect place to get reference to writing rules. Given that ESLint rules are based in AST (Abstract Syntax Tree), you can paste an example code there and visualize all properties of the resulting AST of that code.
- Storybook has a discord community! And we need more people like you. Please join us and say hi in the #contributing channel! 👋