CoolFace
Apppublic

hysts-debug/dropdown-custom-value

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
settings.json22 linesDownload Raw Back to .vscode
1{2    "[python]": {3        "editor.defaultFormatter": "ms-python.black-formatter",4        "editor.formatOnType": true,5        "editor.codeActionsOnSave": {6            "source.organizeImports": true7        }8    },9    "black-formatter.args": [10        "--line-length=119"11    ],12    "isort.args": ["--profile", "black"],13    "flake8.args": [14        "--max-line-length=119"15    ],16    "ruff.args": [17        "--line-length=119"18    ],19    "editor.formatOnSave": true,20    "files.insertFinalNewline": true21}22