Skip to content

Commit c76aa91

Browse files
chore: fix settings.json
1 parent fb59da5 commit c76aa91

File tree

2 files changed

+42
-9
lines changed

2 files changed

+42
-9
lines changed

.vscode/settings.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"[python]": {
3+
"editor.insertSpaces": true,
4+
"editor.tabSize": 4,
5+
"editor.codeActionsOnSave": {
6+
"source.organizeImports": "explicit",
7+
"source.fixAll": "explicit"
8+
}
9+
},
10+
"python.testing.pytestArgs": [
11+
"tests"
12+
],
13+
"python.testing.unittestEnabled": false,
14+
"python.testing.pytestEnabled": true,
15+
// https://github.com/astral-sh/ruff-vscode
16+
"python.analysis.ignore": [
17+
"*"
18+
],
19+
"[markdown]": {
20+
"editor.formatOnSave": true,
21+
"editor.quickSuggestions": {
22+
"comments": "off",
23+
"strings": "off",
24+
"other": "off"
25+
},
26+
"files.trimTrailingWhitespace": false,
27+
"editor.defaultFormatter": "vscode.markdown-language-features"
28+
},
29+
"doppler.autocomplete.enable": true,
30+
"doppler.hover.enable": true
31+
}

{{cookiecutter.project_slug}}/.vscode/settings.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@
1616
"python.analysis.ignore": [
1717
"*"
1818
],
19-
"[markdown]": {
20-
"editor.formatOnSave": true,
21-
"editor.quickSuggestions": {
22-
"comments": "off",
23-
"strings": "off",
24-
"other": "off"
25-
},
26-
"files.trimTrailingWhitespace": false,
27-
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
19+
"[markdown]": {
20+
"editor.formatOnSave": true,
21+
"editor.quickSuggestions": {
22+
"comments": "off",
23+
"strings": "off",
24+
"other": "off"
2825
},
26+
"files.trimTrailingWhitespace": false,
27+
"editor.defaultFormatter": "vscode.markdown-language-features"
28+
},
29+
"doppler.autocomplete.enable": true,
30+
"doppler.hover.enable": true
2931
}

0 commit comments

Comments
 (0)