Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI failure #60

Merged
merged 1 commit into from
Aug 1, 2024
Merged

Fix CI failure #60

merged 1 commit into from
Aug 1, 2024

Commits on Jul 31, 2024

  1. Ignore buggy clippy::lint_groups_priority lint

    ```
    error: lint group `rust_2018_idioms` has the same priority (0) as a lint
      --> Cargo.toml:28:1
       |
    28 | rust_2018_idioms = "warn"
       | ^^^^^^^^^^^^^^^^   ------ has an implicit priority of 0
    29 | single_use_lifetimes = "warn"
       | -------------------- has the same priority as this lint
       |
       = note: the order of the lints in the table is ignored by Cargo
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
       = note: `#[deny(clippy::lint_groups_priority)]` on by default
    help: to have lints override the group set `rust_2018_idioms` to a lower priority
       |
    28 | rust_2018_idioms = { level = "warn", priority = -1 }
       |                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ```
    taiki-e committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    acb24e0 View commit details
    Browse the repository at this point in the history