-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
executable file
·34 lines (32 loc) · 1.04 KB
/
coc-settings.json
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
{
"coc.preferences.formatOnSaveFiletypes": ["rust", "python"],
"workspace.ignoredFolders": [
"$HOME",
"$HOME/.cargo/**",
"$HOME/.rustup/**"
],
"rust-analyzer.inlayHints.typeHints.enable": true,
"rust-analyzer.inlayHints.chainingHints.enable": true,
"rust-analyzer.inlayHints.parameterHints": true,
"rust-analyzer.inlayHints.expressionAdjustmentHints.mode": "postfix",
"rust-analyzer.rustfmt.overrideCommand": [
"leptosfmt",
"--stdin",
"--rustfmt"
],
"rust-analyzer.checkOnSave.features": "all",
"rust-analyzer.cargo.features": "all",
"rust-analyzer.check.features": "all",
"rust-analyzer.check.overrideCommand": [
"cargo",
"clippy",
"--message-format=json"
],
"ruff.nativeServer": true,
"ruff.autoFixOnSave": true,
"ruff.disableDocumentFormatting": true,
"python.formatting.provider": "ruff",
"python.organizeimports.provider": "ruff",
"python.linting.provider": "ruff",
"python.linting.mypyEnabled": false,
}