We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 34cd45b + 128ddf9 commit cb4e91eCopy full SHA for cb4e91e
test/archunit/SeparationOfConcerns.test.ts
@@ -6,7 +6,7 @@ import path from 'node:path'
6
describe('Ensure separation of concerns', () => {
7
test('check language-internal dependencies', async () => {
8
const langFolders = fs.readdirSync(path.join(__dirname, '..', '..', 'src', 'language'), { withFileTypes: true })
9
- .filter(file => file.isDirectory() && file.name !== 'generated')
+ .filter(file => file.isDirectory() && file.name !== 'generated' && file.name !== 'utils')
10
.map(file => path.join('language', file.name))
11
12
for (const sourceFolder of langFolders) {
0 commit comments