Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

project.code-workspace 1.4 KB

You have to be logged in to leave a comment. Sign In
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
  1. {
  2. "folders": [
  3. {
  4. "path": "."
  5. }
  6. ],
  7. "settings": {
  8. "workbench.colorTheme": "Visual Studio Light",
  9. "diffEditor.ignoreTrimWhitespace": true,
  10. "workbench.sideBar.location": "right",
  11. "breadcrumbs.enabled": false,
  12. "editor.renderWhitespace": "none",
  13. "editor.minimap.enabled": false,
  14. "workbench.activityBar.visible": true,
  15. "window.menuBarVisibility": "default",
  16. "editor.fastScrollSensitivity": 10,
  17. "editor.mouseWheelScrollSensitivity": 2,
  18. "window.zoomLevel": 0,
  19. "extensions.ignoreRecommendations": true,
  20. "python.linting.pylintEnabled": false,
  21. "python.linting.enabled": false,
  22. "python.linting.pylamaEnabled": false,
  23. "python.linting.pydocstyleEnabled": false,
  24. "python.pythonPath": "${env:PYTHON_EXECUTABLE}",
  25. "workbench.editor.tabCloseButton": "off",
  26. "workbench.editor.tabSizing": "shrink",
  27. "workbench.editor.highlightModifiedTabs": true,
  28. "editor.mouseWheelScrollSensitivity": 3,
  29. "editor.folding": false,
  30. "editor.glyphMargin": false,
  31. "files.exclude": {
  32. "**/__pycache__": true,
  33. "**/.github": true,
  34. "**/.vscode": true,
  35. "**/*.dat": true,
  36. "**/*.h5": true,
  37. "**/*.npy": true
  38. },
  39. "editor.quickSuggestions": {
  40. "other": false,
  41. "comments": false,
  42. "strings": false
  43. },
  44. "editor.trimAutoWhitespace": false,
  45. "python.linting.pylintArgs": [
  46. "--disable=import-error"
  47. ]
  48. }
  49. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...