File size: 366 Bytes
0248d13 |
1 2 3 4 5 6 7 8 9 10 11 |
{
"editor.rulers": [120],
"python.languageServer": "Pylance",
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length", "120"],
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": ["--max-line-length=120"]
}
|