Skip to content
Snippets Groups Projects
Commit 4b2eda7e authored by Carl Schönfelder's avatar Carl Schönfelder
Browse files

fix: vscode performance by exclude python-env

parent 6b190e39
No related branches found
No related tags found
No related merge requests found
Pipeline #38638 passed
......@@ -9,7 +9,9 @@
},
//python
"python.venvPath": "${workspaceFolder}\\server",
"python.analysis.extraPaths": ["server"],
"python.analysis.extraPaths": [
"server"
],
"python.terminal.activateEnvironment": true,
"python.formatting.provider": "black",
"python.formatting.blackPath": "server\\env\\Scripts\\black.exe",
......@@ -18,9 +20,11 @@
"119"
],
//eslint
"eslint.workingDirectories": ["./client"],
"eslint.workingDirectories": [
"./client"
],
"eslint.options": {
"configFile":"./.eslintrc"
"configFile": "./.eslintrc"
},
"prettier.configPath": "./client/.prettierrc",
//git
......@@ -32,4 +36,16 @@
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/env/Include": true,
"**/env/Lib": true
},
"files.watcherExclude": {
"**/env/Lib/**": true
},
"search.exclude": {
"**/env": true
},
}
\ No newline at end of file
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