mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-17 05:02:23 +08:00
19 lines
368 B
JavaScript
19 lines
368 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'remark-preset-lint-recommended',
|
|
['remark-lint-list-item-indent', false],
|
|
[
|
|
'remark-lint-code',
|
|
{
|
|
js: {
|
|
module: 'node_modules/remark-lint-code-eslint',
|
|
options: {
|
|
fix: true,
|
|
configFile: '.eslintrc-markdown.js',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|