From ab36e352121dbc6c69437a038ef069d9b8d53043 Mon Sep 17 00:00:00 2001 From: Arshia001 Date: Thu, 17 Aug 2023 21:35:14 +0400 Subject: [PATCH] Disable auto-format of toml files in VS Code (#4156) Disable auto-format of toml files in VS Code and change commit message to let it show up as new --- .gitignore | 3 ++- .vscode/settings.json | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index d9c8c3e33f1..ed9fd0c7e3a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,8 @@ .idea .gdb_history /.cargo/ -**/.vscode +**/.vscode/* +!/.vscode/settings.json api-docs-repo/ /.cargo_home/ /package/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000000..46c2c916942 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "[toml]": { + "editor.formatOnSave": false, + "editor.formatOnPaste": false, + "editor.formatOnType": false + } +} \ No newline at end of file