forked from e2b-dev/E2B
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
82 lines (82 loc) · 2.3 KB
/
Copy pathsettings.json
File metadata and controls
82 lines (82 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"search.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"lib/**": true,
".next/**": true,
"**/.next/**": true,
"**/.venv/**": true,
"**/.turbo/**": true,
"**/poetry.lock/**": true,
"**/__pycache__/**": true,
"**/.vercel/**": true,
".vscode/**": true,
".git/**": true,
"**/node_modules/**": true,
"**/package-lock.json": true,
"**/yarl.lock": true
},
"files.watcherExclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"lib/**": true,
"**/poetry.lock/**": true,
"**/.turbo/**": true,
"**/.vercel/**": true,
"**/.venv/**": true,
"**/__pycache__/**": true,
"**/.next/**": true,
".next/**": true,
".vscode/**": true,
".git/**": true,
"**/node_modules/**": true,
"**/package-lock.json": true,
"**/yarl.lock": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"css.validate": false,
"tailwindCSS.validate": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.validate": [
"javascript",
"typescript"
],
"debug.javascript.codelens.npmScripts": "never",
"editor.codeLens": true,
"editor.suggest.localityBonus": true,
"typescript.enablePromptUseWorkspaceTsdk": true,
"npm.packageManager": "pnpm",
"python.formatting.provider": "black",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.autoComplete.extraPaths": [
"./**",
"./packages/python-sdk/**",
"./packages/python-sdk/.venv/bin/python",
],
"python.defaultInterpreterPath": "./packages/python-sdk/.venv/bin/python",
"python.analysis.extraPaths": [
"./**",
"./packages/python-sdk/**",
"./packages/python-sdk/.venv/bin/python"
],
// Disable Pylint and use just Pylance
"python.linting.enabled": false,
"python.analysis.typeCheckingMode": "basic",
// "python.analysis.pylanceLspClientEnabled": true,
// "python.analysis.inlayHints.functionReturnTypes": true,
// "python.analysis.inlayHints.pytestParameters": true,
// "python.analysis.inlayHints.variableTypes": true,
// "python.analysis.autoImportCompletions": true,
// "python.analysis.completeFunctionParens": true
}