-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPyBadge-Snake.sublime-project
More file actions
44 lines (44 loc) · 1.38 KB
/
Copy pathPyBadge-Snake.sublime-project
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"folders":
[
{
"path": "/Volumes/CIRCUITPY",
"file_exclude_patterns": [".metadata_never_index","boot_out.txt"],
"folder_exclude_patterns": [".fseventsd", ".Trashes"],
},
{
"path": ".",
/*"file_exclude_patterns": ".metadata_never_index",*/
"folder_exclude_patterns": [".fseventsd", ".Trashes"],
},
{
"path": "/Users/gavynlenyk/Library/Application Support/Sublime Text/Packages/User"
},
],
"settings": {
"LSP": {
"LSP-basedpyright": {
"settings": {
"python.pythonPath": "/opt/homebrew/bin/python3.14",
"basedpyright.analysis.extraPaths": [
"/Users/gavynlenyk/Documents/GitHub/test",
"/Volumes/CIRCUITPY/lib",
"/Volumes/CIRCUITPY"
],
"basedpyright.analysis.typeCheckingMode": "basic",
// This forces it to dig into the .py files for info
"basedpyright.analysis.useLibraryCodeForTypes": true,
"basedpyright.analysis.diagnosticSeverityOverrides": {
// These stop it from complaining while it's digging
"reportUnknownVariableType": "none",
"reportUnknownMemberType": "none",
"reportUnknownArgumentType": "none",
"reportUnknownParameterType": "none",
"reportAny": "none",
"reportMissingImports": "none",
},
},
},
},
},
}