ACLauncher/.vscode/settings.json
2024-02-02 20:28:36 +11:00

36 lines
No EOL
926 B
JSON

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