Skip to content

Commit

Permalink
fix(internal): Ignore more code in prettier/eslint/tsconfig to increa…
Browse files Browse the repository at this point in the history
…se performance (#5556)

Ignore more code in prettier/eslint/tsconfig to increase performance
  • Loading branch information
Swimburger authored Jan 8, 2025
1 parent a4d83bf commit ba35b87
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ build
dist
.yarn
.husky
.github
.turbo
.vscode
node_modules
generated
__snapshots__
bundle.c?js
.pnp*
packages/ir-sdk/**
Expand Down
8 changes: 5 additions & 3 deletions shared/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -31,8 +30,11 @@
**/*.sh
*.d.ts

__snapshots__

.yarn
.github
.turbo
node_modules
fern


3 changes: 2 additions & 1 deletion shared/tsconfig.shared.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
// "noUnusedLocals": true,
// "noUnusedParameters": true,
"noImplicitReturns": true,
}
},
"exclude": ["node_modules", "dist", ".turbo", ".github", ".husky", "__snapshots__"]
}

0 comments on commit ba35b87

Please sign in to comment.