|
32 | 32 | "editor.formatOnSave": false |
33 | 33 | }, |
34 | 34 | // Rust Analyzer config |
| 35 | + "rust-analyzer.check.command": "clippy", |
35 | 36 | "rust-analyzer.cargo.allTargets": false, |
36 | 37 | "rust-analyzer.procMacro.ignored": { |
37 | 38 | "serde_derive": ["Serialize", "Deserialize"], |
|
47 | 48 | "vite-plugin-svelte-css-no-scopable-elements": "ignore", // NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts` |
48 | 49 | "a11y-no-static-element-interactions": "ignore", // NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts` |
49 | 50 | "a11y-no-noninteractive-element-interactions": "ignore", // NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts` |
50 | | - "a11y-click-events-have-key-events": "ignore" // NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts` |
| 51 | + "a11y-click-events-have-key-events": "ignore", // NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts` |
| 52 | + "a11y_consider_explicit_label": "ignore", // NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts` |
| 53 | + "a11y_click_events_have_key_events": "ignore", // NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts` |
| 54 | + "a11y_no_noninteractive_element_interactions": "ignore" // NOTICE: Keep this list in sync with the list in `frontend/vite.config.ts` |
51 | 55 | }, |
| 56 | + // Git Graph config |
| 57 | + "git-graph.repository.fetchAndPrune": true, |
| 58 | + "git-graph.repository.showRemoteHeads": false, |
| 59 | + "git-graph.repository.commits.fetchAvatars": true, |
| 60 | + // VS Code Git config |
| 61 | + "git.autofetch": true, |
| 62 | + "git.enableStatusBarSync": false, |
| 63 | + "git.showActionButton": { |
| 64 | + "sync": false |
| 65 | + }, |
| 66 | + // CSpell config |
| 67 | + "cSpell.language": "en-US", |
| 68 | + "cSpell.logLevel": "Information", |
| 69 | + "cSpell.allowCompoundWords": true, |
52 | 70 | // VS Code config |
53 | 71 | "html.format.wrapLineLength": 200, |
54 | 72 | "files.eol": "\n", |
55 | 73 | "files.insertFinalNewline": true, |
56 | 74 | "files.associations": { |
57 | 75 | "*.graphite": "json" |
58 | | - } |
| 76 | + }, |
| 77 | + "editor.renderWhitespace": "boundary", |
| 78 | + "editor.minimap.markSectionHeaderRegex": "// ===+\\n\\s*//\\s*(?<label>[^\\n]{1,18})[^\\n]*(\\n\\s*//[^\\n]*)*\\n\\s*// ===+", |
| 79 | + "evenBetterToml.formatter.alignComments": false |
59 | 80 | } |
0 commit comments