Skip to content

Commit

Permalink
Disable auto-format of toml files in VS Code (#4156)
Browse files Browse the repository at this point in the history
Disable auto-format of toml files in VS Code and change commit message to let it show up as new
  • Loading branch information
Arshia001 authored Aug 17, 2023
1 parent 66bc2b2 commit ab36e35
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
.idea
.gdb_history
/.cargo/
**/.vscode
**/.vscode/*
!/.vscode/settings.json
api-docs-repo/
/.cargo_home/
/package/
Expand Down
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"[toml]": {
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.formatOnType": false
}
}

0 comments on commit ab36e35

Please sign in to comment.