Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "editor.formatOnSave": true,
- // Use Ruff as linter
- "python.linting.enabled": true,
- "python.linting.ruffEnabled": true,
- // Turn off other linters if you only want Ruff
- "python.linting.pylintEnabled": false,
- "python.linting.flake8Enabled": false,
- "python.linting.mypyEnabled": false,
- // Format with Ruff
- "editor.defaultFormatter": "charliermarsh.ruff",
- "ruff.lineLength": 120,
- "ruff.exclude": [
- ".git",
- ".venv",
- "venv",
- "__pycache__",
- "dist",
- "build",
- "*.egg-info",
- ],
- "ruff.lint.select": [
- "E",
- "F",
- "I",
- "UP",
- ],
- // Optional: run Ruff organize imports on save
- "[python]": {
- "editor.codeActionsOnSave": {
- "source.fixAll.ruff": "explicit",
- "source.organizeImports.ruff": "explicit"
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment