Skip to content

Instantly share code, notes, and snippets.

@michaelcaxias
Last active May 27, 2022 12:23
Show Gist options
  • Save michaelcaxias/cf915a9b50e1247eb367990d7b5a124f to your computer and use it in GitHub Desktop.
Save michaelcaxias/cf915a9b50e1247eb367990d7b5a124f to your computer and use it in GitHub Desktop.
settings vscode
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"git.enableSmartCommit": true,
"editor.tabSize": 2,
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.inlineSuggest.enabled": true,
"liveshare.launcherClient": "web",
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true,
"css": true,
"postcss": true,
"typescript": true,
"code-runner-output": false,
"javascript": true,
"mongodb": true,
"python": false
},
"bracketPairColorizer.depreciation-notice": false,
"terminal.integrated.fontFamily": "MesloLGS NF",
"editor.fontSize": 15,
"git.confirmSync": false,
"explorer.confirmDelete": false,
"editor.unicodeHighlight.allowedCharacters": {
"​": true
},
"workbench.colorTheme": "Dracula",
"editor.unicodeHighlight.nonBasicASCII": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"security.workspace.trust.untrustedFiles": "open",
"mdb.confirmRunAll": false,
"sonarlint.rules": {
"javascript:S905": {
"level": "off"
}
},
"code-runner.executorMap": {
"python": "/usr/bin/python3"
},
"diffEditor.ignoreTrimWhitespace": false,
"files.insertFinalNewline": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.formatOnType": true,
"editor.detectIndentation": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"files.eol": "\n",
"files.encoding": "utf8",
"liveServer.settings.port": 0,
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"stylelint.validate": ["css", "scss"],
"workbench.iconTheme": "material-icon-theme",
"sonarlint.ls.javaHome": "/home/michaelenzo/.vscode/extensions/sonarsource.sonarlint_managed-jre/jre/jdk-11.0.14.1+1-jre",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.autoSave": "afterDelay",
"prettier.singleQuote": true,
"prettier.printWidth": 90,
"prettier.arrowParens": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment