Wireguard-tools.js/.zed/settings.json
Matheus Sampaio Queiroga da284272af
All checks were successful
Test / Test Linux (21.x) (push) Successful in 1m8s
Test / Test Linux (20.x) (push) Successful in 1m10s
Test / Test Linux (latest) (push) Successful in 1m58s
Test / Test Linux (18.x) (push) Successful in 2m15s
Clean code for userspace
2024-07-11 20:35:12 -03:00

39 lines
945 B
JSON

// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#folder-specific-settings
{
"remove_trailing_whitespace_on_save": true,
"ensure_final_newline_on_save": true,
"formatter": "auto",
"format_on_save": "off",
"tab_size": 2,
"languages": {
"TypeScript": {
"hard_tabs": false,
"format_on_save": "on",
"code_actions_on_format": {
"source.organizeImports": true,
"source.removeUnusedImports": true
}
},
"JavaScript": {
"hard_tabs": false,
"format_on_save": "on",
"code_actions_on_format": {
"source.organizeImports": true,
"source.removeUnusedImports": true
}
},
"Go": {
"format_on_save": "on"
},
"C++": {
"hard_tabs": false
},
"C": {
"hard_tabs": false
}
}
}