39 lines
971 B
JSON
39 lines
971 B
JSON
// .vscode/settings.json
|
|
{
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
},
|
|
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
},
|
|
|
|
"C_Cpp.clang_format_style": "file",
|
|
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
}
|
|
},
|
|
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
}
|
|
},
|
|
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
|
|
"[java]": {
|
|
"editor.defaultFormatter": "redhat.java" },
|
|
"java.format.settings.url": "java-style.xml",
|
|
"java.format.settings.profile": "GoogleStyle",
|
|
"java.checkstyle.enabled": true,
|
|
"java.checkstyle.configuration": "${workspaceFolder}/checkstyle.xml",
|
|
"java.checkstyle.version": "10.12.0"
|
|
} |