23 lines
707 B
JSON
Executable file
23 lines
707 B
JSON
Executable file
{
|
|
/* Exclude temporary files from the explorer. */
|
|
"files.exclude": {
|
|
"**/.gradle": true,
|
|
"**/bin": true,
|
|
"**/.classpath": true,
|
|
"**/.project": true,
|
|
"**/.settings": true,
|
|
"**/.factorypath": true
|
|
},
|
|
/* Always add a newline to the end of files. */
|
|
"files.insertFinalNewline": true,
|
|
/* Aggressive formatting */
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.formatOnType": true,
|
|
/* Git settings */
|
|
"git.autofetch": true,
|
|
"git.confirmSync": false,
|
|
/* Java settings */
|
|
"java.refactor.renameFromFileExplorer": "autoApply",
|
|
"java.configuration.updateBuildConfiguration": "automatic"
|
|
}
|