pygwin2/.vscode/settings.json
2025-09-20 17:25:17 +03:00

13 lines
No EOL
341 B
JSON

{
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "always"
},
},
"ruff.configurationPreference": "filesystemFirst",
"ruff.lineLength": 110,
"ruff.lint.select": ["ALL"],
"ruff.lint.ignore": ["E501"],
}