Results 32 issues of Soso

``` changelog: [`iter_once`]: add new lint changelog: [`iter_empty`]: add new lint ``` fixes #9186 - \[ ] Followed [lint naming conventions][lint_naming] - \[x] Added passing UI tests (including committed `.stderr`...

S-waiting-on-review

Hi. This PR adds support for constant length byte arrays `[u8; N]` and adds a `ByteArray` wrapper type similar to `BytesBuf`. This would close #26. Motivations ======== Fixed sized array...

Hello, thanks for your work on rusty-tags. Commit 3bfc1a3f4fa7f48b8f3072fea2c6a456c6736106 removes the `Cargo.lock` file from version control. [However, it is recommended by the rust book](https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html) to keep the `Cargo.lock` file in...

Hi! Thanks for all your work on `helix`, it's great! Code blocks in the book are barely readable in the [light themes of the book](https://docs.helix-editor.com/), because some color variables are...

A-documentation
C-enhancement

# Bug Report ## Environment Zola version: 18.0 ## Expected Behavior In a rust code block, in a template, `?Sized` is valid and should be highlighted correctly. ![image](https://github.com/getzola/zola/assets/51865119/a1a67f10-284e-4164-b9d4-3c84c6260e22) ## Current...

### What it does Lint comparison of `NonZero` values with `0`. ### Advantage Such a comparison will always have a constant value. ### Drawbacks _No response_ ### Example ```rust let...

A-lint

Calling `size_hint` on a "wide" recursive struct or enum is extremely slow. Examples: ```rust #[derive(Debug, Arbitrary)] enum Enum { None, A(Box), B(Box), C(Box), D(Box), E(Box), F(Box), G(Box), H(Box), I(Box), }...

### What it does This lints against using `from` twice using an itermediary type when there is an `From` implementation in one step ### Advantage - Reduce the verbosity of...

A-lint

Hovering on touch screen does not make sense, especially when there is the `pressed` property, which is the one that should be used. For mouse compatibility, has-hover is still relevant...

enhancement
a:builtin elements

Sometimes is is desired to restrict access to the data. Basic auth can do just that with a static username/password combination