-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
35 lines (34 loc) · 859 Bytes
/
settings.json
File metadata and controls
35 lines (34 loc) · 859 Bytes
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
{
"editor.rulers": [88],
"editor.tabSize": 4,
"editor.insertSpaces": true,
"files.exclude": {
"**/.ruff_cache": true,
"**/.venv": true,
"**/__pycache__": true,
"**/agent_chat_cli.egg-info": true,
},
"ruff.enable": true,
"ruff.lint.enable": true,
"python.languageServer": "None",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "always",
"ruff.lint.run": "always"
}
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
}