summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElisée Maurer <elisee@sparklinlabs.com>2022-02-27 23:39:47 +0100
committerGitHub <noreply@github.com>2022-02-28 09:39:47 +1100
commita41d399f5f728c73b652c3f5f5c2bf57d2054153 (patch)
tree5ac1de07d3737ca7a4f9d512d5619f14d03cc684
parent7e3d9084b69d12119b2ad6ef7ac2681e66e36aa0 (diff)
chore: Add "noImplicitOverride" to config-file.v1.json (#13780)
-rw-r--r--cli/schemas/config-file.v1.json6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json
index 2a97ba43e..55ea417f0 100644
--- a/cli/schemas/config-file.v1.json
+++ b/cli/schemas/config-file.v1.json
@@ -99,6 +99,12 @@
"default": true,
"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": {
"description": "Enable error reporting for codepaths that do not explicitly return in a function.",
"type": "boolean",