eBooru/.vscode/settings.json
2024-07-17 14:22:24 -07:00

24 lines
482 B
JSON

{
"[ruby]": {
"editor.formatOnSave": false
},
"files.associations": {
"*.erb": "Ruby ERB"
},
// Trick ruby-lsp into not doing any updates
"rubyLsp.bundleGemfile": "Gemfile",
"npm.packageManager": "yarn",
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.rulers": [100],
"editor.formatOnSave": false,
// Eslint shenanigans
"eslint.useFlatConfig": true,
"eslint.validate": [
"javascript"
],
}