Skip to content

Instantly share code, notes, and snippets.

@jezielm7
Last active October 30, 2022 06:02
Show Gist options
  • Save jezielm7/55da5b7f5b8f9cefa1d6f5a815356ccd to your computer and use it in GitHub Desktop.
Save jezielm7/55da5b7f5b8f9cefa1d6f5a815356ccd to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.colorTheme": "Omni Owl",
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
"useCases": "controller",
"store": "redux-store",
"reducers": "redux-reducer",
"reanimated": "Animation",
"icons": "Svg"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database"
},
"editor.fontFamily": "Jetbrains Mono",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 24,
// "editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"explorer.compactFolders": false,
"php.validate.executablePath": null,
"editor.rulers": [
80,
120
],
"editor.tabSize": 2,
"editor.renderLineHighlight": "gutter",
"terminal.integrated.fontSize": 14,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"editor.renderWhitespace": "all",
"javascript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"terminal.integrated.rendererType": "dom",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.configuration.checkProjectSettingsExclusions": false,
"java.semanticHighlighting.enabled": true,
"tabnine.experimentalAutoImports": true,
"javascript.suggest.AutoImports": true,
"typescript.suggest.AutoImports": true,
"cSpell.language": "en,pt",
"sync.gist": "ee16d8d4571578e2a7a81e4255a91b3b",
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.quietSync": true,
"cSpell.userWords": [
"bagde",
"capslock",
"Caruaru",
"cnpj",
"Conosco",
"Contato",
"customizado",
"devlogin",
"devs",
"Empilhadeira",
"espaguete",
"garai",
"Hotmart",
"Informe",
"Jeziel",
"middlewares",
"nubank",
"o",
"qrcode",
"Raz",
"Razão",
"respawn",
"rnfc",
"Rocketseat",
"shazam",
"tsnd",
"whatsapp"
],
"java.project.importHint": false,
"java.requirements.JDK11Warning": false,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.startupEditor": "newUntitledFile",
"sonarlint.rules": {
"javascript:S905": {
"level": "off"
},
"javascript:S1481": {
"level": "off"
},
"javascript:S1854": {
"level": "off"
},
"javascript:S1128": {
"level": "off"
},
"javascript:S1117": {
"level": "off"
},
"javascript:S1534": {
"level": "off"
},
"typescript:S1128": {
"level": "off"
},
"javascript:S878": {
"level": "off"
},
"typescript:S1117": {
"level": "off"
},
"javascript:S3699": {
"level": "off"
},
"typescript:S1301": {
"level": "off"
},
"typescript:S1788": {
"level": "off"
}
},
"workbench.statusBar.visible": true,
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.editor.enablePreview": false,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"liveshare.authenticationProvider": "GitHub",
"security.workspace.trust.untrustedFiles": "open",
"react-native-tools.showUserTips": false,
"diffEditor.ignoreTrimWhitespace": false,
"bracket-pair-colorizer-2.depreciation-notice": false,
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment