{ // Configurações do pylint // "python.pythonPath": "venv/bin/python", // "python.linting.pylintArgs": [ // "--load-plugins=pylint_django" // ], // Tema "workbench.colorTheme": "Copilot Theme", "workbench.productIconTheme": "icons-carbon", "workbench.iconTheme": "material-icon-theme", // Associações "files.associations": { "**/*.html": "html", "**/templates/**/*.html": "django-html", "**/templates/**/*": "django-txt", "**/requirements{/**,*}.{txt,in}": "pip-requirements" }, // Tabnine "tabnine.experimentalAutoImports": true, // Jupyter "workbench.editorAssociations": { "*.ipynb": "jupyter-notebook" }, "notebook.cellToolbarLocation": { "default": "right", "jupyter-notebook": "left" }, // Fonte "editor.fontSize": 17, "files.autoSave": "afterDelay", "editor.fontWeight": "500", // Cursor "editor.cursorStyle": "block", // Formatar quando colar "editor.formatOnPaste": true, // Formatar quando salvar "editor.formatOnSave": true, // Quebra de linha no diff e no editor "diffEditor.wordWrap": "on", "editor.wordWrap": "on", // Terminal em ZSH "terminal.integrated.automationShell.linux": "/bin/zsh", //Formatação do código django-html // "prettier.disableLanguages": [ // "django-html", // "html", // "vue-html" // ], // Beautify "beautify.language": { "html": [ "django-html", "html", "vue-html" ] }, // Salvar e formatar "[django-html]": { "editor.formatOnSave": true, "editor.defaultFormatter": "HookyQR.beautify" }, // Espaço da tab "editor.tabSize": 2, // Identação "editor.detectIndentation": true, // Desabilitado o preview "workbench.editor.enablePreview": false, // Highlight Matching Tag "highlight-matching-tag.styles": { "opening": { "name": { "underline": "yellow" } } }, // Emmet "emmet.variables": { "lang": "pt-br", "charset": "UTF-8" }, // Emmet associações "emmet.includeLanguages": { "django-html": "html", "html": "html" }, "emmet.triggerExpansionOnTab": true, "emmet.showSuggestionsAsSnippets": true, // Comentário no fechamentos das tags "htmlEndTagLabels.labelColor": "#ffe20d", // Spell check idiomas "cSpell.language": "en,pt,pt_BR", // Better Comments "better-comments.tags": [ { "tag": "!", "color": "#FF2D00", "strikethrough": false, "underline": false, "backgroundColor": "transparent", "bold": false, "italic": false }, { "tag": "?", "color": "#3498DB", "strikethrough": false, "underline": false, "backgroundColor": "transparent", "bold": false, "italic": false }, { "tag": "//", "color": "#474747", "strikethrough": true, "underline": false, "backgroundColor": "transparent", "bold": false, "italic": false }, { "tag": "todo", "color": "#FF8C00", "strikethrough": false, "underline": false, "backgroundColor": "transparent", "bold": false, "italic": false }, { "tag": "*", "color": "#98C379", "strikethrough": false, "underline": false, "backgroundColor": "transparent", "bold": false, "italic": false } ], // Colorful Comments "colorful-comments.highlightPlainText": true, "colorful-comments.tags": [ { "tag": "!", "color": "#FF2D00", "strikethrough": false, "backgroundColor": "transparent" }, { "tag": "?", "color": "#0076FF", "strikethrough": false, "backgroundColor": "transparent" }, { "tag": "//", "color": "#474747", "strikethrough": true, "backgroundColor": "transparent" }, { "tag": "^", "color": "#EAF622", "strikethrough": false, "backgroundColor": "transparent" }, { "tag": "*", "color": "#28FF00", "strikethrough": false, "backgroundColor": "transparent" }, { "tag": "&", "color": "#FF06A0", "strikethrough": false, "backgroundColor": "transparent" }, { "tag": "~", "color": "#BE00FF", "strikethrough": false, "backgroundColor": "transparent" }, { "tag": "todo", "color": "#FF8C00", "strikethrough": false, "backgroundColor": "transparent" } ], "editor.autoClosingBrackets": "always", "editor.autoClosingQuotes": "always", "editor.cursorBlinking": "smooth", "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "cSpell.userWords": [ "alura", "Mayanna" ], "editor.comments.ignoreEmptyLines": false, "window.zoomLevel": -1, "sync.gist": "bb09a03361d0da3fddd74adaa7bcef14", // Ignorar linhas brancas // "editor.comments.includeEmptyLines": true, } // Fim