Skip to content

Commit

Permalink
fix: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mashal-m committed Nov 30, 2023
1 parent f9b9023 commit 759282f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/extendESLintConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const extendESLintConfig = (config) => {
const importNoUnresolved = config.rules['import/no-unresolved'];
if (importNoUnresolved ) {
const originalIgnore = importNoUnresolved[1].ignore;
if (!originalIgnore.includes('@edx/frontend-enterprise-*')) {
if (!originalIgnore.includes('@edx/frontend-enterprise-*', '@edx/paragon')) {
importNoUnresolved[1].ignore = [...originalIgnore, '@edx/frontend-enterprise-*'];
}
}
Expand Down

0 comments on commit 759282f

Please sign in to comment.