File tree Expand file tree Collapse file tree 2 files changed +42
-9
lines changed
{{cookiecutter.project_slug}}/.vscode Expand file tree Collapse file tree 2 files changed +42
-9
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 16
16
"python.analysis.ignore" : [
17
17
" *"
18
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" : " DavidAnson.vscode-markdownlint"
19
+ "[markdown]" : {
20
+ "editor.formatOnSave" : true ,
21
+ "editor.quickSuggestions" : {
22
+ "comments" : " off" ,
23
+ "strings" : " off" ,
24
+ "other" : " off"
28
25
},
26
+ "files.trimTrailingWhitespace" : false ,
27
+ "editor.defaultFormatter" : " vscode.markdown-language-features"
28
+ },
29
+ "doppler.autocomplete.enable" : true ,
30
+ "doppler.hover.enable" : true
29
31
}
You can’t perform that action at this time.
0 commit comments