cloudflare-gateway-adblocking/.vscode/settings.json

11 lines
344 B
JSON
Raw Normal View History

{
2023-08-06 21:29:07 +01:00
"python.languageServer": "Pylance", // Ruff is used for linting but Pylance still is useful for intellisense
"python.analysis.ignore": [
"*"
],
"python.analysis.exclude": [
"."
],
2023-08-06 21:50:38 +01:00
"python.linting.enabled": false // https://github.com/microsoft/vscode-python/wiki/Migration-to-Python-Tools-Extensions
}