Spaces:
Running
Running
{ | |
"[python]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "charliermarsh.ruff", | |
"editor.defaultFoldingRangeProvider": "charliermarsh.ruff", | |
"editor.codeActionsOnSave": { | |
"source.organizeImports.ruff": "always", | |
"source.unusedImports": "explicit" | |
} | |
}, | |
"python.analysis.typeCheckingMode": "standard", | |
"ruff.lineLength": 79, | |
"editor.inlineSuggest.enabled": true, | |
"errorLens.onSave": true, | |
"pylint.args": ["--disable=missing-docstring"], | |
"flake8.args": ["--ignore=E501", "--radon-max-cc=10"], | |
"editor.rulers": [ | |
{ | |
"color": "#079c0f", | |
"column": 79 | |
}, | |
{ | |
"color": "#079c95", | |
"column": 99 | |
}, | |
{ | |
"color": "#9c0707", | |
"column": 119 | |
} | |
] | |
} |