Feature/set up stylisticTypeChecked rule in eslint configuration (#3878)
* Set up stylisticTypeChecked rule in eslint configuration * Update changelog --------- Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
@ -20,7 +20,20 @@
|
||||
"@ghostfolio/client/*": ["apps/client/src/app/*"],
|
||||
"@ghostfolio/common/*": ["libs/common/src/lib/*"],
|
||||
"@ghostfolio/ui/*": ["libs/ui/src/lib/*"]
|
||||
}
|
||||
},
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"strict": false,
|
||||
"strictNullChecks": false,
|
||||
"strictPropertyInitialization": false,
|
||||
"noImplicitReturns": false,
|
||||
"noImplicitAny": false,
|
||||
"noImplicitThis": false,
|
||||
"noImplicitOverride": false,
|
||||
"noPropertyAccessFromIndexSignature": false,
|
||||
"noUnusedLocals": false,
|
||||
"noUnusedParameters": false,
|
||||
"allowUnreachableCode": true
|
||||
},
|
||||
"exclude": ["node_modules", "tmp"]
|
||||
}
|
||||
|
Reference in New Issue
Block a user