Skip to content

Instantly share code, notes, and snippets.

@borys-kupar
Last active October 27, 2022 10:32
Show Gist options
  • Save borys-kupar/5b4dacd25095c38c896698ec8ce88274 to your computer and use it in GitHub Desktop.
Save borys-kupar/5b4dacd25095c38c896698ec8ce88274 to your computer and use it in GitHub Desktop.
My VSCode settings
{
"eslint.codeActionsOnSave.mode": "problems",
"eslint.validate": [
"javascript",
],
"editor.tabSize": 2,
"files.autoSave": "off",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.colorTheme": "Atom One Dark",
"git.autofetch": true,
"git.confirmSync": false,
"git.pullTags": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"files.exclude": {
"node_modules": true
},
"diffEditor.ignoreTrimWhitespace": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false
},
"path-intellisense.absolutePathToWorkspace": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.smoothScrolling": true,
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"typescript.tsserver.log": "off",
"typescript.tsserver.pluginPaths": [
"typescript-plugin-css-modules"
],
"typescript.updateImportsOnFileMove.enabled": "always",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"css.lint.validProperties": [
"composes"
],
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"python.languageServer": "Pylance",
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"editor.formatOnSave": true,
"jest.autoRun": "off",
"githubPullRequests.pullBranch": "never",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment