Du noir qui ne fonctionne pas du tout. Pourquoi donc?
J'étais accro au numéro 3. Après tout, il n'est pas bon de changer soudainement diverses choses ...
settings.json
"[python]": {
"editor.tabSize": 4,
"editor.detectIndentation": false,
"editor.formatOnSave": true,
},
"python.linting.enabled":true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.lintOnSave":true,
"python.formatting.provider": "black",
"python.linting.flake8Args": [
"--max-line-length=120",
"--ignore=E203,W503,W504"
],
"python.formatting.blackArgs": [
"--line-length=120"
],
Le problème que la mise en forme automatique ne fonctionne pas était de savoir comment spécifier le nombre maximal de caractères sur une ligne.
max-line-length
line-length
sérieusement
c'est tout.Recommended Posts