Created
January 27, 2024 13:59
-
-
Save pch/e6202106732af73fc6b90320475c98cf to your computer and use it in GitHub Desktop.
vscode settings for eslint, prettier, ruby-lsp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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