Skip to content
Snippets Groups Projects
Commit d6a821c9 authored by Christoffer Stoll's avatar Christoffer Stoll
Browse files

add: include setting and launch

parent 9fe7f029
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ dist-ssr ...@@ -13,7 +13,7 @@ dist-ssr
*.local *.local
# Editor directories and files # Editor directories and files
.vscode/* #.vscode/*
!.vscode/extensions.json !.vscode/extensions.json
.idea .idea
.DS_Store .DS_Store
......
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Flask",
"type": "python",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "raven.py",
"FLASK_ENV": "development"
},
"args": [
"run",
"--no-debugger"
],
"jinja": true,
"justMyCode": true
}
]
}
\ No newline at end of file
{
"html.format.wrapLineLength": 0,
"python.formatting.autopep8Args": ["--max-line-length=20000"],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"workbench.editor.highlightModifiedTabs": true,
"files.trimFinalNewlines": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.pyc": {
"when": "$(basename).py"
},
"**/__pycache__": true
},
"css.lint.unknownAtRules": "ignore",
"files.associations": {
"*.css": "tailwindcss"
},
"prettier.htmlWhitespaceSensitivity": "ignore",
"prettier.trailingComma": "none",
"prettier.printWidth": 999999999999999,
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": null
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment