diff --git a/README.md b/README.md index 225c8b47da..d54cb7bb9d 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,7 @@ An extremely fast Python linter and code formatter, written in Rust. - 🔧 Fix support, for automatic error correction (e.g., automatically remove unused imports) - 📏 Over [800 built-in rules](https://docs.astral.sh/ruff/rules/), with native re-implementations of popular Flake8 plugins, like flake8-bugbear -- ⌨️ First-party [editor integrations](https://docs.astral.sh/ruff/integrations/) for - [VS Code](https://github.com/astral-sh/ruff-vscode) and [more](https://docs.astral.sh/ruff/editors/setup) +- ⌨️ First-party [editor integrations](https://docs.astral.sh/ruff/editors) for [VS Code](https://github.com/astral-sh/ruff-vscode) and [more](https://docs.astral.sh/ruff/editors/setup) - 🌎 Monorepo-friendly, with [hierarchical and cascading configuration](https://docs.astral.sh/ruff/configuration/#config-file-discovery) Ruff aims to be orders of magnitude faster than alternative tools while integrating more diff --git a/scripts/generate_mkdocs.py b/scripts/generate_mkdocs.py index 54e224cd66..d78307b28e 100644 --- a/scripts/generate_mkdocs.py +++ b/scripts/generate_mkdocs.py @@ -54,7 +54,6 @@ SECTIONS: list[Section] = [ Section("Contributing", "contributing.md", generated=True), ] - LINK_REWRITES: dict[str, str] = { "https://docs.astral.sh/ruff/": "index.md", "https://docs.astral.sh/ruff/configuration/": "configuration.md", @@ -62,8 +61,8 @@ LINK_REWRITES: dict[str, str] = { "configuration.md#config-file-discovery" ), "https://docs.astral.sh/ruff/contributing/": "contributing.md", + "https://docs.astral.sh/ruff/editors": "editors/index.md", "https://docs.astral.sh/ruff/editors/setup": "editors/setup.md", - "https://docs.astral.sh/ruff/integrations/": "integrations.md", "https://docs.astral.sh/ruff/faq/#how-does-ruffs-linter-compare-to-flake8": ( "faq.md#how-does-ruffs-linter-compare-to-flake8" ),