add exemptions to rule

This commit is contained in:
Jacob Overgaard
2023-11-03 08:56:40 +01:00
parent 5521a60c29
commit 56eb389a7d

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', '.'].some(v => value.startsWith(v))) {
if (['@umbraco-cms', '@open-wc/testing', '@storybook', '.'].some(v => value.startsWith(v))) {
return;
}