Skip to content

Commit

Permalink
turned off noUnusedLocals and noUnusedParameters options in tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
rjwignar committed Jun 26, 2024
1 parent 035e083 commit 6e9274d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pokecopilot-client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "bundler",
Expand Down

0 comments on commit 6e9274d

Please sign in to comment.