hysts's picture
hysts HF staff
Use ruff
95df80d
raw
history blame contribute delete
398 Bytes
{
"editor.formatOnSave": true,
"files.insertFinalNewline": false,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports": "explicit"
}
},
"flake8.args": [
"--max-line-length=119"
],
}