diff --git a/addons/storyshots/storyshots-puppeteer/.eslintrc.js b/addons/storyshots/storyshots-puppeteer/.eslintrc.js new file mode 100644 index 000000000000..ad25253ab8f6 --- /dev/null +++ b/addons/storyshots/storyshots-puppeteer/.eslintrc.js @@ -0,0 +1,10 @@ +const error = 2; +const warn = 1; +const ignore = 0; + +module.exports = { + rules: { + 'import/no-unresolved': ignore, + 'import/extensions': ignore, + }, +};