60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"workbench.editor.titleScrollbarSizing": "large",
|
|
"window.title": "${activeEditorMedium}${separator}${rootName}${separator}${profileName}",
|
|
"workbench.preferredDarkColorTheme": "Spinel",
|
|
"workbench.preferredLightColorTheme": "Spinel Light",
|
|
"rubyLsp.formatter": "syntax_tree",
|
|
"files.associations": {
|
|
".env-cmdrc": "json"
|
|
},
|
|
"[ruby]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[erb]": {
|
|
"editor.defaultFormatter": "aliariff.vscode-erb-beautify"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[xml]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[dockerfile]": {
|
|
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
|
|
},
|
|
"tailwindCSS.includeLanguages": {
|
|
"erb": "html",
|
|
"typescript": "javascript"
|
|
},
|
|
"tailwindCSS.experimental.classRegex": [
|
|
"\\bclass:\\s*'([^']*)'",
|
|
"\\bclass:\\s*\"([^\"]*)\"",
|
|
"[\"'`]([^\"'`]*).*?,?\\s?"
|
|
],
|
|
"editor.quickSuggestions": {
|
|
"other": "on",
|
|
"comments": "off",
|
|
"strings": "on"
|
|
},
|
|
"tailwindCSS.experimental.configFile": "config/tailwind.config.js",
|
|
"sqliteViewer.maxFileSize": 4000,
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true
|
|
}
|