mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-21 05:02:39 +08:00
18 lines
252 B
JavaScript
18 lines
252 B
JavaScript
const warn = 1;
|
|
|
|
module.exports = {
|
|
rules: {
|
|
// because of highlight.js
|
|
'import/extensions': [
|
|
warn,
|
|
{
|
|
js: 'never',
|
|
json: 'always',
|
|
},
|
|
],
|
|
},
|
|
settings: {
|
|
'import/core-modules': ['config'],
|
|
},
|
|
};
|