summaryrefslogtreecommitdiff
path: root/cli/schemas
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-09-18 14:49:30 +0100
committerGitHub <noreply@github.com>2024-09-18 14:49:30 +0100
commit48ea4e3c92b53936e89101a56a013300a47337d3 (patch)
tree90ca1009d8eb29796fab0654028043b5db0628fe /cli/schemas
parent7533492a7817ba61b3606dd412b78dc4d98faa76 (diff)
feat(check): turn on noImplicitOverride (#25695)
Closes https://github.com/denoland/deno/issues/11836 Ref https://github.com/denoland/deno/issues/25162
Diffstat (limited to 'cli/schemas')
-rw-r--r--cli/schemas/config-file.v1.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json
index 8d0af55bf..96b7c4bed 100644
--- a/cli/schemas/config-file.v1.json
+++ b/cli/schemas/config-file.v1.json
@@ -127,7 +127,7 @@
"noImplicitOverride": {
"description": "Ensure overriding members in derived classes are marked with an override modifier.",
"type": "boolean",
- "default": false,
+ "default": true,
"markdownDescription": "Ensure overriding members in derived classes are marked with an override modifier.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitOverride"
},
"noImplicitReturns": {