ACLauncher/.vscode/settings.json

36 lines
926 B
JSON
Raw Normal View History

{
"[po]": {
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": false,
"files.trimFinalNewlines": true,
},
2020-06-29 05:09:28 -07:00
"[java]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
2020-06-29 05:09:28 -07:00
}
},
2023-07-14 16:40:00 -07:00
"[github-actions-workflow]": {
"editor.tabSize": 2
},
2020-06-29 05:09:28 -07:00
"editor.formatOnSave": true,
"better-comments.tags": [
{
"tag": "#.",
"color": "#3498DB",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
"editor.wordWrapColumn": 120,
"editor.rulers": [
120
],
2020-06-29 05:09:28 -07:00
"java.import.gradle.wrapper.enabled": true,
"java.completion.filteredTypes": [
"java.awt.List",
"com.sun.*"
],
2020-06-29 05:09:28 -07:00
"java.codeGeneration.generateComments": true,
"git.inputValidationLength": 100,
"java.compile.nullAnalysis.mode": "automatic",
2023-07-14 16:40:00 -07:00
}