Last active
April 29, 2023 19:06
-
-
Save peidrao/18951ede80aa0ba55fa4343330e1c881 to your computer and use it in GitHub Desktop.
format and remove
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontLigatures": true, | |
"editor.rulers": [80, 120], | |
"editor.fontSize": 11, | |
"editor.letterSpacing": 0.4, | |
"editor.smoothScrolling": true, | |
"editor.minimap.enabled": false, | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"terminal.integrated.fontSize": 11, | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.defaultProfile.linux": "zsh", | |
"workbench.editor.enablePreview": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.activityBar.iconClickBehavior": "focus", | |
"workbench.sideBar.location": "right", | |
"workbench.colorTheme": "Gruvbox Material Dark", | |
"workbench.startupEditor": "none", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"files.autoSave": "afterDelay", | |
"git.confirmSync": false, | |
"gitlens.defaultGravatarsStyle": "retro", | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.statusBar.alignment": "left", | |
"files.associations": { | |
"**/*.html": "html", | |
"**/templates/**/*.html": "django-html", | |
"**/templates/**/*": "django-txt", | |
"**/requirements{/**,*}.{txt,in}": "pip-requirements" | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/*.pyc": true, | |
"**/__pycache__/": true | |
}, | |
"emmet.includeLanguages": { | |
"django-html": "html" | |
}, | |
"python.linting.pylintEnabled": true, | |
"python.linting.pylintArgs": [ | |
"--errors-only", | |
"--disable=django-not-configured", | |
"--django-settings-module=<mainapp>.settings", | |
"--load-plugins=pylint_django" | |
], | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[python]": { | |
"editor.formatOnType": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment