|
{ |
|
"python.linting.enabled": true, |
|
"python.linting.flake8Enabled": true, |
|
"python.linting.pylintEnabled": false, |
|
"python.linting.lintOnSave": true, |
|
"python.formatting.provider": "yapf", |
|
"python.formatting.yapfArgs": [ |
|
"--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}" |
|
], |
|
"[python]": { |
|
"editor.formatOnType": true, |
|
"editor.codeActionsOnSave": { |
|
"source.organizeImports": true |
|
} |
|
}, |
|
"editor.formatOnSave": true, |
|
"files.insertFinalNewline": true |
|
} |
|
|