@saasmakers/eslint 0.1.50 → 0.1.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eslint.config.cjs +6 -4
- package/dist/eslint.config.mjs +6 -4
- package/package.json +1 -1
package/dist/eslint.config.cjs
CHANGED
|
@@ -22489,12 +22489,14 @@ const config = [
|
|
|
22489
22489
|
parser: tseslint__default.parser,
|
|
22490
22490
|
projectService: {
|
|
22491
22491
|
allowDefaultProject: [
|
|
22492
|
-
|
|
22493
|
-
"
|
|
22494
|
-
"
|
|
22492
|
+
// Consider a cleaner solution for specifying these default project paths.
|
|
22493
|
+
"../../../../../../../apps/web/capacitor.config.ts",
|
|
22494
|
+
"../../../../../../../apps/web/playwright.config.ts",
|
|
22495
|
+
"../../../../../../../apps/web/tests/*.spec.ts",
|
|
22495
22496
|
"../../../../../../../apps/web/uno.config.ts"
|
|
22496
22497
|
]
|
|
22497
|
-
}
|
|
22498
|
+
},
|
|
22499
|
+
tsconfigRootDir: undefined
|
|
22498
22500
|
}
|
|
22499
22501
|
},
|
|
22500
22502
|
rules: {
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -22454,12 +22454,14 @@ const config = [
|
|
|
22454
22454
|
parser: tseslint.parser,
|
|
22455
22455
|
projectService: {
|
|
22456
22456
|
allowDefaultProject: [
|
|
22457
|
-
|
|
22458
|
-
"
|
|
22459
|
-
"
|
|
22457
|
+
// Consider a cleaner solution for specifying these default project paths.
|
|
22458
|
+
"../../../../../../../apps/web/capacitor.config.ts",
|
|
22459
|
+
"../../../../../../../apps/web/playwright.config.ts",
|
|
22460
|
+
"../../../../../../../apps/web/tests/*.spec.ts",
|
|
22460
22461
|
"../../../../../../../apps/web/uno.config.ts"
|
|
22461
22462
|
]
|
|
22462
|
-
}
|
|
22463
|
+
},
|
|
22464
|
+
tsconfigRootDir: import.meta.dirname
|
|
22463
22465
|
}
|
|
22464
22466
|
},
|
|
22465
22467
|
rules: {
|