mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
chore: Add "noImplicitOverride" to config-file.v1.json (#13780)
This commit is contained in:
parent
7e3d9084b6
commit
a41d399f5f
1 changed files with 6 additions and 0 deletions
|
@ -99,6 +99,12 @@
|
||||||
"default": true,
|
"default": true,
|
||||||
"markdownDescription": "Enable error reporting for expressions and declarations with an implied `any` type..\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitAny"
|
"markdownDescription": "Enable error reporting for expressions and declarations with an implied `any` type..\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitAny"
|
||||||
},
|
},
|
||||||
|
"noImplicitOverride": {
|
||||||
|
"description": "Ensure overriding members in derived classes are marked with an override modifier.",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false,
|
||||||
|
"markdownDescription": "Ensure overriding members in derived classes are marked with an override modifier.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitOverride"
|
||||||
|
},
|
||||||
"noImplicitReturns": {
|
"noImplicitReturns": {
|
||||||
"description": "Enable error reporting for codepaths that do not explicitly return in a function.",
|
"description": "Enable error reporting for codepaths that do not explicitly return in a function.",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
|
Loading…
Reference in a new issue