diff --git a/.eslintignore b/.eslintignore index ac04ae066d5..7b39dda3474 100644 --- a/.eslintignore +++ b/.eslintignore @@ -3,7 +3,12 @@ build dist .yarn .husky +.github +.turbo +.vscode +node_modules generated +__snapshots__ bundle.c?js .pnp* packages/ir-sdk/** diff --git a/shared/.prettierignore b/shared/.prettierignore index 7e35722d04d..3b03b335a17 100644 --- a/shared/.prettierignore +++ b/shared/.prettierignore @@ -7,8 +7,7 @@ ../packages/cli/openapi-ir-sdk/** ../packages/seed/src/config/** ../generators/csharp/codegen/src/asIs/**/*.Template.* -../scripts/** -../seed/** +../seed/**/* ../docker/seed/** **/*.yaml @@ -31,8 +30,11 @@ **/*.sh *.d.ts +__snapshots__ + .yarn -.github +.turbo +node_modules fern diff --git a/shared/tsconfig.shared.json b/shared/tsconfig.shared.json index 4d6b56f068c..fb1d7a3b692 100644 --- a/shared/tsconfig.shared.json +++ b/shared/tsconfig.shared.json @@ -25,5 +25,6 @@ // "noUnusedLocals": true, // "noUnusedParameters": true, "noImplicitReturns": true, - } + }, + "exclude": ["node_modules", "dist", ".turbo", ".github", ".husky", "__snapshots__"] } \ No newline at end of file