Skip to content

Commit 73576ea

Browse files
committed
update
1 parent 07b0723 commit 73576ea

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.zed/settings.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Folder-specific settings
2+
//
3+
// For a full list of overridable settings, and general information on folder-specific settings,
4+
// see the documentation: https://zed.dev/docs/configuring-zed#folder-specific-settings
5+
{
6+
"languages": {
7+
"Python": {
8+
"formatter": {
9+
"external": {
10+
"command": "black",
11+
"arguments": ["-"]
12+
}
13+
},
14+
"format_on_save": "on"
15+
}
16+
},
17+
"lsp": {
18+
"pyright": {
19+
"settings": {
20+
"python.analysis": {
21+
"diagnosticMode": "workspace",
22+
"typeCheckingMode": "strict"
23+
},
24+
"python": {
25+
// "pythonPath": "packages/py-automation/try-uiautomator2/.venv/bin/python"
26+
// "pythonPath": "packages/py-crawler/try-selenium/.venv/bin/python"
27+
"pythonPath": "/Users/dev/.pyenv/shims/python"
28+
}
29+
}
30+
}
31+
}
32+
}

0 commit comments

Comments
 (0)