Skip to content

Instantly share code, notes, and snippets.

@jlozovei
Last active April 28, 2023 14:48
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 jlozovei/dd8db477baa482e792de09c97198f9de to your computer and use it in GitHub Desktop.
Save jlozovei/dd8db477baa482e792de09c97198f9de to your computer and use it in GitHub Desktop.
My personal VSCode settings
{
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"editor.fontSize": 18,
"editor.tabSize": 2,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"workbench.colorTheme": "GitHub Dark Default",
"workbench.startupEditor": "none",
"terminal.external.osxExec": "iTerm.app",
"terminal.explorerKind": "external",
"eslint.codeActionsOnSave.rules": null,
"eslint.format.enable": true,
"eslint.run": "onSave",
"eslint.alwaysShowStatus": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"prettier.printWidth": 100,
"editor.minimap.maxColumn": 100,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment