From e2ea8a97cf9ea81f90bb9bf083c10dd702582974 Mon Sep 17 00:00:00 2001 From: charles-m-knox Date: Fri, 6 Sep 2024 17:40:02 -0700 Subject: [PATCH] add vscode workspace setting to ignore autoformatting in java files --- .vscode/settings.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..c2b22c7e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + // do not autoformat java files in this repository + "[java]": { + "editor.formatOnSave": false, + "editor.formatOnPaste": false, + "editor.formatOnType": false, + }, +} \ No newline at end of file