Skip to content

Commit 4926d1d

Browse files
authored
Merge pull request #210 from charles-m-knox/vscode-no-autoformat
Add vscode workspace setting to ignore autoformatting in java files
2 parents 0c80ff2 + e2ea8a9 commit 4926d1d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
// do not autoformat java files in this repository
3+
"[java]": {
4+
"editor.formatOnSave": false,
5+
"editor.formatOnPaste": false,
6+
"editor.formatOnType": false,
7+
},
8+
}

0 commit comments

Comments
 (0)