File tree 3 files changed +26
-1
lines changed
3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
1
examples /notcommit /
2
- .vscode /
3
2
4
3
.idea /
5
4
.vs /
Original file line number Diff line number Diff line change
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3
+ // Extension identifier format: ${publisher }.${name}. Example: vscode.csharp
4
+ // List of extensions which should be recommended for users of this workspace.
5
+ "recommendations" : [
6
+ " ms-python.python" ,
7
+ " ms-python.black-formatter" ,
8
+ " ms-python.isort" ,
9
+ " ms-python.flake8"
10
+ ],
11
+ // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
12
+ "unwantedRecommendations" : []
13
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "[python]" : {
3
+ "editor.defaultFormatter" : " ms-python.black-formatter" ,
4
+ "editor.formatOnSave" : true ,
5
+ "editor.codeActionsOnSave" : {
6
+ "source.organizeImports" : true
7
+ },
8
+ },
9
+ "black-formatter.importStrategy" : " fromEnvironment" ,
10
+ "isort.importStrategy" : " fromEnvironment" ,
11
+ "isort.args" :[" --profile" , " black" ],
12
+ "flake8.importStrategy" : " fromEnvironment"
13
+ }
You can’t perform that action at this time.
0 commit comments