Disable unused in tsconfig temporarily

pull/1161/head
Mikunj 5 years ago
parent e9983099a9
commit 4139144b73

@ -26,8 +26,8 @@
"strict": true, // Enable all strict type-checking options. "strict": true, // Enable all strict type-checking options.
"skipLibCheck": true, "skipLibCheck": true,
// Additional Checks // Additional Checks
"noUnusedLocals": true, // Report errors on unused locals. "noUnusedLocals": false, // Report errors on unused locals. Loki - Enable this after refactor
"noUnusedParameters": true, // Report errors on unused parameters. "noUnusedParameters": false, // Report errors on unused parameters. Loki - Enable this after refactor
"noImplicitReturns": true, // Report error when not all code paths in function return a value. "noImplicitReturns": true, // Report error when not all code paths in function return a value.
"noFallthroughCasesInSwitch": true, // Report errors for fallthrough cases in switch statement. "noFallthroughCasesInSwitch": true, // Report errors for fallthrough cases in switch statement.

Loading…
Cancel
Save