Skip to content

Instantly share code, notes, and snippets.

@pixelead0
Created March 19, 2022 01:39
Show Gist options
  • Save pixelead0/8f5733a68779d513aa585a5dc0c876e8 to your computer and use it in GitHub Desktop.
Save pixelead0/8f5733a68779d513aa585a5dc0c876e8 to your computer and use it in GitHub Desktop.
vscode config
{
"window.zoomLevel": 2,
"editor.columnSelection": false,
"workbench.colorTheme": "Arkademy",
"files.associations": {
"*.bash": "shellscript",
"*.jinja": "html"
},
"explorer.confirmDelete": false,
"[jinja]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[vue]": {
"editor.highlightActiveIndentGuide": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[html]": {
"editor.highlightActiveIndentGuide": true,
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[scss]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"html.format.endWithNewline": true,
"html.format.enable": false,
"scss.lint.duplicateProperties": "warning",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"git.confirmSync": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.languageServer": "Default",
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"python.autoComplete.addBrackets": true,
"python.venvPath": "${workspaceFolder}/docker-compose exec api python",
"diffEditor.renderSideBySide": false,
"cornflakes.linter.run": "onType",
"explorer.confirmDragAndDrop": false,
"editor.rulers": [
80
],
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.pycodestyleEnabled": true,
"python.linting.pydocstyleEnabled": true,
"python.linting.pylamaEnabled": true,
"python.linting.ignorePatterns": [
".vscode/*.py",
"**/site-packages/**/*.py",
"**/__init__.py"
],
"prettier.htmlWhitespaceSensitivity": "ignore",
"python.analysis.completeFunctionParens": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment