Skip to content

Instantly share code, notes, and snippets.

@pch
Created January 27, 2024 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pch/e6202106732af73fc6b90320475c98cf to your computer and use it in GitHub Desktop.
Save pch/e6202106732af73fc6b90320475c98cf to your computer and use it in GitHub Desktop.
vscode settings for eslint, prettier, ruby-lsp
{
"editor.overviewRulerBorder": false,
"[typescript, javascript]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[ruby]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
}
},
"rubyLsp.formatter": "rubocop"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment