Spaces:
Sleeping
Sleeping
File size: 392 Bytes
5a123c6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
{
"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}"
],
} |