2025-07-18 13:14:28 +08:00

15 lines
432 B
JSON
Executable File

{
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
"python.formatting.blackArgs": ["--line-length", "88"],
"python.formatting.blackPath": "/Users/junsen/miniconda3/envs/py-test/bin/black",
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.linting.flake8Args": [
"--max-line-length=88"
]
}