From ebf97527fd85684fe6b5074b8a656954a68839ec Mon Sep 17 00:00:00 2001 From: Bruno Quaresma Date: Tue, 18 Feb 2025 11:25:05 -0300 Subject: [PATCH] chore: add biome to devcontainer.json (#16605) --- .devcontainer/devcontainer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index de550f174b..907287634c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,5 +9,10 @@ } }, // SYS_PTRACE to enable go debugging - "runArgs": ["--cap-add=SYS_PTRACE"] + "runArgs": ["--cap-add=SYS_PTRACE"], + "customizations": { + "vscode": { + "extensions": ["biomejs.biome"] + } + } }