Browse Source

feat(lint): ignore circular deps between client and ui

pull/5925/head
KenTandrian 2 months ago
parent
commit
73c49f9bb3
  1. 8
      eslint.config.cjs

8
eslint.config.cjs

@ -20,15 +20,17 @@ module.exports = [
'@nx/enforce-module-boundaries': [ '@nx/enforce-module-boundaries': [
'error', 'error',
{ {
allowCircularSelfDependency: true,
enforceBuildableLibDependency: true,
allow: [], allow: [],
allowCircularSelfDependency: true,
depConstraints: [ depConstraints: [
{ {
sourceTag: '*', sourceTag: '*',
onlyDependOnLibsWithTags: ['*'] onlyDependOnLibsWithTags: ['*']
} }
] ],
enforceBuildableLibDependency: true,
// Temporary fix, should be removed eventually
ignoredCircularDependencies: [['client', 'ui']]
} }
], ],
'@typescript-eslint/no-extra-semi': 'error', '@typescript-eslint/no-extra-semi': 'error',

Loading…
Cancel
Save