mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-08 01:28:22 +00:00
39 lines
805 B
JSON
39 lines
805 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
|
|
{
|
|
"prettier": {
|
|
"allowed": false
|
|
},
|
|
"languages": {
|
|
"JavaScript": {
|
|
"formatter": {
|
|
"code_actions": {
|
|
"source.fixAll.eslint": true
|
|
}
|
|
},
|
|
"tab_size": 2
|
|
},
|
|
"TypeScript": {
|
|
"formatter": {
|
|
"code_actions": {
|
|
"source.fixAll.eslint": true
|
|
}
|
|
},
|
|
"tab_size": 2
|
|
},
|
|
"Vue.js": {
|
|
"formatter": {
|
|
"code_actions": {
|
|
"source.fixAll.eslint": true
|
|
}
|
|
},
|
|
"tab_size": 2
|
|
},
|
|
"CSS": {
|
|
"format_on_save": "off",
|
|
"tab_size": 2
|
|
}
|
|
}
|
|
}
|