add msw as exemption

This commit is contained in:
Jacob Overgaard
2023-11-03 09:18:23 +01:00
parent 6c7043cbe8
commit 2a119541e3

View File

@@ -358,7 +358,7 @@ module.exports = {
const { value } = source;
// If import starts with any of the following, then it's allowed
if (['@umbraco-cms', '@open-wc/testing', '@storybook', '.'].some(v => value.startsWith(v))) {
if (['@umbraco-cms', '@open-wc/testing', '@storybook', 'msw', '.'].some(v => value.startsWith(v))) {
return;
}