Update
Browse files- .vscode/settings.json +18 -0
.vscode/settings.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"python.linting.enabled": true,
|
3 |
+
"python.linting.flake8Enabled": true,
|
4 |
+
"python.linting.pylintEnabled": false,
|
5 |
+
"python.linting.lintOnSave": true,
|
6 |
+
"python.formatting.provider": "yapf",
|
7 |
+
"python.formatting.yapfArgs": [
|
8 |
+
"--style={based_on_style: pep8, indent_width: 4, blank_line_before_nested_class_or_def: false, spaces_before_comment: 2, split_before_logical_operator: true}"
|
9 |
+
],
|
10 |
+
"[python]": {
|
11 |
+
"editor.formatOnType": true,
|
12 |
+
"editor.codeActionsOnSave": {
|
13 |
+
"source.organizeImports": true
|
14 |
+
}
|
15 |
+
},
|
16 |
+
"editor.formatOnSave": true,
|
17 |
+
"files.insertFinalNewline": true
|
18 |
+
}
|