-
```
> rustc --help
...
--cap-lints LEVEL
Set the most restrictive lint level. More restrictive
lints are capped at this level
...
```
I …
-
Example content for `.analysis_options`:
``` yaml
analyzer:
strong-mode: true
exclude:
- test/**
linter:
rules:
- always_declare_return_types
- always_specify_types
- annotate_o…
-
I keep running into these two lint errors and not knowing what to do
```
29:3 warning Expected catch() or return promise/catch-or-return
29:3 error Each then() should return a …
-
It would be useful and nice to be able to customize some lints with parameter/configuration.
For instance:
```yaml
linter:
rules:
- file_headers:
pattern: '// Copyright 2015 Th…
a14n updated
6 months ago
-
Where possible, code that is generated by assists, fixes, refactorings and snippets should be idiomatic with respect to enabled lints. (For example, trailing commas should be inserted where appropria…
-
**Description**
It would be great if the `check.sh` script took an additional boolean parameter: `FAIL_ON_ERRORS`.
**Use Case**
Most linters will return exit code 0 if no errors are found, and ex…
TimD1 updated
1 month ago
-
When I compile `sdl2-sys` crate with the latest stable Rust, I get this kind of error message:
```
warning: unexpected `cfg` condition name: `ios_framework`
--> sdl2-sys\build.rs:340:46
|…
-
とうとうtokioのMSRVが1.70になったので (https://github.com/tokio-rs/tokio?tab=readme-ov-file#supported-rust-versions)
1.75.0あたりまで一気に引き上げて良さそう
-
### Is this about an existing lint, or proposing a new one?
Deleting the manual implementation of a trait for a type does not trigger a sember-checks error.
### Known issues that might be causing th…
-
### Summary
Adding this section to Cargo.toml produces no errors or warnings:
```bash
[lints.clippy]
asdf = "deny"
```
I'm trying to do this:
```bash
[lints.clippy]
blocks_in_conditions = "…