[IMP] athene prevent seeing .pyc

This commit is contained in:
Jared Kipe
2021-12-20 07:30:51 -08:00
parent 48399ae909
commit 21a1b9a7fa
2 changed files with 37 additions and 0 deletions

17
.theia/settings.json Normal file
View File

@@ -0,0 +1,17 @@
{
"workbench.colorTheme": "Hibou Dark",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": {"when": "$(basename).py"},
"**/__pycache__": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true
}
}