Skip to content

Commit 508fda1

Browse files
authored
fix: ignore mobile runtime config artifacts in lint (#1395)
Exclude the Expo Metro config and generated Capacitor app outputs from workspace lint so CI only checks source files and no longer fails on platform-specific artifacts. Made-with: Cursor
1 parent e0df07e commit 508fda1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

eslint.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ export default [
1010
`**/traildepot/**`,
1111
`examples/angular/**`,
1212
`packages/db-collection-e2e/vite.config.ts`,
13+
`packages/db-capacitor-sqlite-persisted-collection/e2e/app/android/**`,
14+
`packages/db-capacitor-sqlite-persisted-collection/e2e/app/ios/**`,
15+
// Expo expects Metro config in CommonJS format.
16+
`packages/db-expo-sqlite-persisted-collection/e2e/expo-runtime-app/metro.config.js`,
1317
],
1418
},
1519
{

0 commit comments

Comments
 (0)