I would like disable eslint-loader of storybook's webpack, cuz I use other process to validate the code's quality.
I know exists the webpack's config about storybook like code below and maybe I could use some filter on config.rules, but maybe isn't good:
const path = require('path')
module.exports = async ({ config }) => {
// some modifications
return config
}
I've trying searching on storybook's docs about this, but didn't find anything about.