mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-26 20:10:09 +00:00
Bugfix: Remove version numbers from pypi links (#5579)
## Summary There are two pypi links in the documentation that link to specific version numbers of other packages. Removing these versioned links allows users to immediately view the latest version of the package and maintains consistency with the other links. ## Test Plan N/A
This commit is contained in:
parent
b22e6c3d38
commit
aaab9f1597
3 changed files with 4 additions and 4 deletions
|
@ -112,7 +112,7 @@ pub enum Linter {
|
||||||
/// [flake8-import-conventions](https://github.com/joaopalmeiro/flake8-import-conventions)
|
/// [flake8-import-conventions](https://github.com/joaopalmeiro/flake8-import-conventions)
|
||||||
#[prefix = "ICN"]
|
#[prefix = "ICN"]
|
||||||
Flake8ImportConventions,
|
Flake8ImportConventions,
|
||||||
/// [flake8-logging-format](https://pypi.org/project/flake8-logging-format/0.9.0/)
|
/// [flake8-logging-format](https://pypi.org/project/flake8-logging-format/)
|
||||||
#[prefix = "G"]
|
#[prefix = "G"]
|
||||||
Flake8LoggingFormat,
|
Flake8LoggingFormat,
|
||||||
/// [flake8-no-pep420](https://pypi.org/project/flake8-no-pep420/)
|
/// [flake8-no-pep420](https://pypi.org/project/flake8-no-pep420/)
|
||||||
|
@ -181,7 +181,7 @@ pub enum Linter {
|
||||||
/// [Pylint](https://pypi.org/project/pylint/)
|
/// [Pylint](https://pypi.org/project/pylint/)
|
||||||
#[prefix = "PL"]
|
#[prefix = "PL"]
|
||||||
Pylint,
|
Pylint,
|
||||||
/// [tryceratops](https://pypi.org/project/tryceratops/1.1.0/)
|
/// [tryceratops](https://pypi.org/project/tryceratops/)
|
||||||
#[prefix = "TRY"]
|
#[prefix = "TRY"]
|
||||||
Tryceratops,
|
Tryceratops,
|
||||||
/// [flynt](https://pypi.org/project/flynt/)
|
/// [flynt](https://pypi.org/project/flynt/)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//! Rules from [flake8-logging-format](https://pypi.org/project/flake8-logging-format/0.9.0/).
|
//! Rules from [flake8-logging-format](https://pypi.org/project/flake8-logging-format/).
|
||||||
pub(crate) mod rules;
|
pub(crate) mod rules;
|
||||||
pub(crate) mod violations;
|
pub(crate) mod violations;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//! Rules from [tryceratops](https://pypi.org/project/tryceratops/1.1.0/).
|
//! Rules from [tryceratops](https://pypi.org/project/tryceratops/).
|
||||||
pub(crate) mod helpers;
|
pub(crate) mod helpers;
|
||||||
pub(crate) mod rules;
|
pub(crate) mod rules;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue