|
2 | 2 | "files.autoSave": "onFocusChange", |
3 | 3 | "editor.wordWrap": "off", |
4 | 4 | "editor.formatOnSave": true, |
5 | | - "editor.codeActionsOnSave": { |
6 | | - "source.organizeImports": "always" |
7 | | - }, |
8 | 5 | "git.autofetch": false, |
9 | 6 | "quarto.visualEditor.markdownWrap": "column", |
10 | 7 | "quarto.visualEditor.markdownWrapColumn": 72, |
11 | | - "autoDocstring.customTemplatePath": ".vscode/google-notypes.mustache", |
12 | 8 | "editor.tabCompletion": "on", |
13 | 9 | "editor.snippetSuggestions": "inline", |
14 | 10 | "conventional-branch.type": [ |
15 | | - "build", // Changes that affect the build system or external dependencies |
16 | | - "ci", // Changes to our CI configuration files and scripts |
17 | | - "docs", // Documentation only changes |
18 | | - "feat", // A new feature |
19 | | - "fix", // A bug fix |
20 | | - "refactor", // A code change that neither fixes a bug nor adds a feature |
21 | | - "style", // Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) |
22 | | - "test", // Adding missing tests or correcting existing tests |
23 | | - "chore", // Misc things, like renaming or deleting files |
| 11 | + "build", |
| 12 | + "ci", |
| 13 | + "docs", |
| 14 | + "feat", |
| 15 | + "fix", |
| 16 | + "refactor", |
| 17 | + "style", |
| 18 | + "test", |
| 19 | + "chore", |
| 20 | + "revert", |
| 21 | + "perf" |
24 | 22 | ], |
25 | 23 | "conventional-branch.format": "{Type}/{Branch}", |
26 | | - "[quarto][qmd]": { |
| 24 | + "[quarto][qmd][jinja]": { |
27 | 25 | "editor.formatOnSave": false |
28 | 26 | }, |
29 | | - "python.defaultInterpreterPath": "${workspaceFolder}/.venv", |
30 | | - "python.languageServer": "Pylance", |
31 | | - "files.insertFinalNewline": true, |
32 | 27 | "files.associations": { |
33 | 28 | "justfile.jinja": "plaintext", |
34 | 29 | "*.yml.jinja": "jinja-yaml", |
35 | 30 | "*.cff.jinja": "jinja-yaml", |
36 | 31 | "*.toml.jinja": "jinja-toml", |
37 | 32 | "*.qmd.jinja": "jinja-md" |
38 | 33 | }, |
| 34 | + "files.insertFinalNewline": true |
39 | 35 | } |
0 commit comments