|
1 | 1 | { |
2 | | - "files.autoSave": "onFocusChange", |
3 | | - "editor.wordWrap": "on", |
| 2 | + "files.autoSave": "onFocusChange", |
| 3 | + "editor.wordWrap": "off", |
| 4 | + "editor.formatOnSave": true, |
| 5 | + "git.autofetch": false, |
| 6 | + "quarto.visualEditor.markdownWrap": "column", |
| 7 | + "quarto.visualEditor.markdownWrapColumn": 72, |
| 8 | + "editor.tabCompletion": "on", |
| 9 | + "editor.snippetSuggestions": "inline", |
| 10 | + "conventional-branch.type": [ |
| 11 | + "build", // Changes that affect the build system or external dependencies |
| 12 | + "ci", // Changes to our CI configuration files and scripts |
| 13 | + "docs", // Documentation only changes |
| 14 | + "feat", // A new feature |
| 15 | + "fix", // A bug fix |
| 16 | + "refactor", // A code change that neither fixes a bug nor adds a feature |
| 17 | + "style", // Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) |
| 18 | + "test", // Adding missing tests or correcting existing tests |
| 19 | + "chore", // Misc things, like renaming or deleting files |
| 20 | + ], |
| 21 | + "conventional-branch.format": "{Type}/{Branch}", |
| 22 | + "files.insertFinalNewline": true, |
| 23 | + "[quarto,markdown]": { |
4 | 24 | "editor.formatOnSave": false, |
5 | | - "git.autofetch": false, |
6 | | - "quarto.visualEditor.markdownWrap": "column", |
7 | | - "quarto.visualEditor.markdownWrapColumn": 72, |
8 | | - "editor.tabCompletion": "on", |
9 | | - "editor.snippetSuggestions": "inline", |
10 | | - "conventional-branch.type": [ |
11 | | - "build", // Changes that affect the build system or external dependencies |
12 | | - "ci", // Changes to our CI configuration files and scripts |
13 | | - "docs", // Documentation only changes |
14 | | - "feat", // A new feature |
15 | | - "fix", // A bug fix |
16 | | - "refactor", // A code change that neither fixes a bug nor adds a feature |
17 | | - "style", // Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) |
18 | | - "test", // Adding missing tests or correcting existing tests |
19 | | - "chore", // Misc things, like renaming or deleting files |
20 | | - ], |
21 | | - "conventional-branch.format": "{Type}/{Branch}", |
22 | | - "files.insertFinalNewline": true, |
23 | | - "cSpell.enabledFileTypes": { |
24 | | - "quarto": true |
25 | | - }, |
26 | | - "cSpell.language": "en,en-GB", |
| 25 | + }, |
27 | 26 | } |
0 commit comments