summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorZach White <skullydazed@gmail.com>2021-06-25 22:47:48 -0700
committerGitHub <noreply@github.com>2021-06-25 22:47:48 -0700
commit848da57d6e2b87b566457c49a2ed15c147e221f5 (patch)
tree8bcbe982f82ad2f917f76cfcd96de5994630be29 /.vscode
parentad3169f500e027296adf6961fcd948caa023891d (diff)
do not automatically format json (#13320)
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/settings.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 8d275ce31a..5fedaf477b 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -23,5 +23,8 @@
"editor.trimAutoWhitespace": false,
"files.trimTrailingWhitespace": false
},
- "python.formatting.provider": "yapf"
+ "python.formatting.provider": "yapf",
+ "[json]": {
+ "editor.formatOnSave": false
+ }
}