Skip to content

Commit

Permalink
fix: remove extra comma
Browse files Browse the repository at this point in the history
  • Loading branch information
mashal-m committed Nov 30, 2023
1 parent 429e3ba commit 7e34305
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 @@ -5,7 +5,7 @@ const extendESLintConfig = (config) => {
if (importNoUnresolved ) {
const originalIgnore = importNoUnresolved[1].ignore;
if (!originalIgnore.includes('@edx/frontend-enterprise-*', '@edx/paragon', '@edx/frontend-platform')) {
importNoUnresolved[1].ignore = [...originalIgnore, '@edx/frontend-enterprise-*', , '@edx/paragon', '@edx/frontend-platform'];
importNoUnresolved[1].ignore = [...originalIgnore, '@edx/frontend-enterprise-*', '@edx/paragon', '@edx/frontend-platform'];
}
}
};
Expand Down

0 comments on commit 7e34305

Please sign in to comment.