update dir notation

This commit is contained in:
vorotamoroz
2026-06-09 07:25:41 +01:00
parent 54c2b1c6db
commit 42ed0d8795
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -18,11 +18,11 @@ export default defineConfig([
"**/*.json", "**/*.json",
"**/.eslintrc.js.bak", "**/.eslintrc.js.bak",
// Files from linked dependencies (those files should not exist for most people). // Files from linked dependencies (those files should not exist for most people).
"modules/octagonal-wheels/dist/**/*", "modules/octagonal-wheels/dist",
// Sub-projects (Exclude from root linting as they have different environments) // Sub-projects (Exclude from root linting as they have different environments)
"src/apps/**/*", "src/apps",
"utils/**/*", "utils",
// Specific exclusions from common library (src/lib) // Specific exclusions from common library (src/lib)
"src/lib/coverage", "src/lib/coverage",
@@ -75,6 +75,7 @@ export default defineConfig([
"require-await": "off", "require-await": "off",
// -- TypeScript specific rules (Gradual adoption of stricter rules, currently set to 'warn' for a while). // -- TypeScript specific rules (Gradual adoption of stricter rules, currently set to 'warn' for a while).
"@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-redundant-type-constituents": "warn",
// -- TypeScript specific rules // -- TypeScript specific rules
// @typescript-eslint/no-unsafe-* rules and @typescript-eslint/no-explicit-any: // @typescript-eslint/no-unsafe-* rules and @typescript-eslint/no-explicit-any:
// This project contains a lot of library-sh code where the use of `any` is often necessary and justified. // This project contains a lot of library-sh code where the use of `any` is often necessary and justified.
+1 -1
Submodule src/lib updated: 7c43d69c65...3cae3909e1