|
5 | 5 | "files.trimTrailingWhitespace": true, |
6 | 6 | "editor.insertSpaces": true, |
7 | 7 | "editor.tabCompletion": "on", |
8 | | - |
9 | 8 | // Default for any filetype |
10 | 9 | "editor.rulers": [ |
11 | 10 | 99 |
12 | 11 | ], |
13 | | - |
14 | 12 | // Exclude build, temp and cache folders |
15 | 13 | "files.watcherExclude": { |
16 | 14 | ".*/**": true, |
|
19 | 17 | ".venv*/**": true, |
20 | 18 | "_build/**": true, |
21 | 19 | }, |
22 | | - |
23 | 20 | // Python Settings |
24 | 21 | // Exclude build, temp and cache folders |
25 | 22 | "python.analysis.exclude": [ |
|
42 | 39 | }, |
43 | 40 | "editor.defaultFormatter": "charliermarsh.ruff", |
44 | 41 | }, |
45 | | - |
46 | 42 | // Markdown Settings |
47 | 43 | "[markdown]": { |
48 | 44 | // We mostly write markdown in some combination with python, |
49 | 45 | // so we use the same rulers as python. |
50 | 46 | "editor.rulers": [ |
51 | | - 79, 99 |
| 47 | + 79, |
| 48 | + 99 |
52 | 49 | ] |
53 | 50 | }, |
54 | | - |
55 | | - "bazel.lsp.command": "bazel", |
56 | | - "bazel.lsp.args": [ |
57 | | - "run", |
58 | | - "//:starpls_server" |
59 | | - ], |
60 | | - |
61 | 51 | // RST Settings |
62 | 52 | "[restructuredtext]": { |
63 | 53 | "editor.tabSize": 3, |
|
99 | 89 | "--ignore-glob=bazel-*/*", |
100 | 90 | "--ignore-glob=.venv_docs/*", |
101 | 91 | "--ignore-glob=_build/*", |
102 | | - |
103 | 92 | ], |
104 | 93 | "python.testing.unittestEnabled": false, |
105 | 94 | "python.testing.pytestEnabled": true, |
| 95 | + "editor.formatOnSave": true, |
| 96 | + "C/C++ Include Guard.Macro Type": "Filepath", |
| 97 | + "C/C++ Include Guard.Comment Style": "Line", |
| 98 | + "json.schemas": [ |
| 99 | + { |
| 100 | + "fileMatch": [ |
| 101 | + "**/mw_com_config.json" |
| 102 | + ], |
| 103 | + "url": "./bazel-score-someip-gateway/external/communication+/score/mw/com/impl/configuration/ara_com_config_schema.json" |
| 104 | + } |
| 105 | + ], |
106 | 106 | } |
0 commit comments