Skip to content

Commit

Permalink
fix: import/no-cycle rule makes linting fail in CI (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky authored Sep 1, 2021
1 parent f378d43 commit 4700216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ module.exports = {
'import/newline-after-import': 2,
'import/no-amd': 2,
'import/no-anonymous-default-export': 2,
'import/no-cycle': [2, { commonjs: true }],
'import/no-cycle': 2,
'import/no-deprecated': 2,
'import/no-dynamic-require': [2, { esmodule: true }],
'import/no-extraneous-dependencies': 2,
Expand Down

0 comments on commit 4700216

Please sign in to comment.