tacticalrmm/.vscode/settings.json

44 lines
1.3 KiB
JSON
Raw Normal View History

2020-08-19 21:49:23 +00:00
{
"python.pythonPath": "api/tacticalrmm/env/bin/python",
2020-10-21 06:14:40 +00:00
"python.languageServer": "Pylance",
"python.analysis.extraPaths": [
"api/tacticalrmm",
2020-10-21 06:14:40 +00:00
],
"python.analysis.typeCheckingMode": "basic",
2020-08-19 21:49:23 +00:00
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"vetur.format.defaultFormatter.js": "prettier",
"vetur.format.defaultFormatterOptions": {
"prettier": {
"semi": true,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"arrowParens": "avoid",
}
},
"vetur.format.options.tabSize": 2,
"vetur.format.options.useTabs": false,
"files.watcherExclude": {
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/": true,
"/node_modules/**": true,
"**/env/": true,
"/env/**": true,
"**/__pycache__": true,
"/__pycache__/**": true,
"**/.cache": true,
"**/.eggs": true,
"**/.ipynb_checkpoints": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/*.egg-info": true,
"**/*.feather": true,
"**/*.parquet*": true,
"**/*.pyc": true,
"**/*.zip": true
},
},
}