servo/.vscode/extensions.json
zefr0x 60eb7c923d
use ruff rather than flake8 for python code linting (#37045)
The initially used config is compatible with flake8 rules, including all
pycodestyle (pep8) and pyflakes rules.

Testing: Broke some python files and used `mach test-tidy --all` to test
the linting.
Fixes: servo/servo#37041

Signed-off-by: zefr0x <zer0-x.7ty50@aleeas.com>
2025-05-24 14:19:47 +00:00

23 lines
No EOL
803 B
JSON

{
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
// Trim only touched lines.
"NathanRidley.autotrim",
// ESLint support.
"dbaeumer.vscode-eslint",
// C/C++ language support.
"ms-vscode.cpptools",
// Rust language support.
"rust-lang.rust-analyzer",
// CSS support for HTML documents.
"ecmel.vscode-html-css",
// IDL language support
"mythmon.idl",
// TOML files
"tamasfe.even-better-toml",
// Python files
"charliermarsh.ruff"
]
}