Spaces:
Sleeping
Sleeping
File size: 484 Bytes
19e3f0f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
{
"python.linting.enabled": true,
"python.linting.pylintPath": "pylint",
"editor.formatOnSave": true,
"python.formatting.provider": "yapf", // or "black" here
"python.linting.pylintEnabled": true,
"python.linting.lintOnSave": true,
"python.formatting.yapfArgs": [
"--style={based_on_style: google, column_limit: 80, indent_width: 4}"
],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
} |