1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-03-21 05:02:39 +08:00

19 lines
303 B
JavaScript

const warn = 1;
module.exports = {
globals: {
graphql: false,
},
rules: {
'import/no-unresolved': [warn, { commonjs: true, caseSensitive: true }],
'import/extensions': [
// because of highlight.js
warn,
'always',
{
js: 'never',
},
],
},
};