From 54f68a4b45929bba911467504822b607e8c9618b Mon Sep 17 00:00:00 2001 From: i582 <51853996+i582@users.noreply.github.com> Date: Fri, 21 Feb 2025 21:55:13 +0400 Subject: [PATCH] fix(vscode): use flat settings keys #294 --- package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 9680fbd0..40095639 100644 --- a/package.json +++ b/package.json @@ -202,22 +202,22 @@ { "title": "Editor › Hints", "properties": { - "tact.editor.hints.types": { + "tact.hints.types": { "type": "boolean", "default": true, "description": "Show type hints for variables and expressions" }, - "tact.editor.hints.parameters": { + "tact.hints.parameters": { "type": "boolean", "default": true, "description": "Show parameter name hints in function calls" }, - "tact.editor.hints.showExitCodes": { + "tact.hints.showExitCodes": { "type": "boolean", "default": true, "description": "Show exit codes in require() call" }, - "tact.editor.hints.exitCodeFormat": { + "tact.hints.exitCodeFormat": { "type": "string", "enum": [ "decimal", @@ -230,12 +230,12 @@ "Show exit codes in hexadecimal format (e.g. 0x4D2)" ] }, - "tact.editor.hints.showMethodId": { + "tact.hints.showMethodId": { "type": "boolean", "default": true, "description": "Show method ID hints for contract functions" }, - "tact.editor.hints.showExplicitTLBIntType": { + "tact.hints.showExplicitTLBIntType": { "type": "boolean", "default": true, "description": "Show explicit TL-B type hints (as int257) for Int fields" @@ -245,22 +245,22 @@ { "title": "Editor › Gas Hints", "properties": { - "tact.editor.gasHints.showGasConsumption": { + "tact.hints.showGasConsumption": { "type": "boolean", "default": true, "description": "Show gas consumption hints for asm functions" }, - "tact.editor.gasHints.showAsmInstructionGas": { + "tact.hints.showAsmInstructionGas": { "type": "boolean", "default": true, "description": "Show gas consumption hints for assembly instructions" }, - "tact.editor.gasHints.showPushcontGas": { + "tact.hints.showPushcontGas": { "type": "boolean", "default": true, "description": "Show gas consumption hints for PUSHCONT blocks" }, - "tact.editor.gasHints.gasFormat": { + "tact.hints.gasFormat": { "type": "string", "default": ": {gas}", "description": "Format string for gas consumption hints. Use {gas} as placeholder for the gas value and {stack} for the stack info",