-
http://dart-lang.github.io/linter/lints/prefer_mixin.html
```bash
# NOTE: This is currently only available with Dart 2.7.0-dev
dartfix --fix=use-mixin -w .
```
-
The message is:
```
The file name 'foo_bar_image_463Ca.dart' isn't a snake_case identifier.
Try changing the name to follow the snake_case style.dart[file_names](https://dart.dev/lints/file_names…
-
I notice a problem here: `CONTRIBUTING.md` says to use `make test` or `make test-full-nix`, yet the CI system only runs `cargo test` and other cargo checks/lints. Is that correct? IMO, we should unify…
-
Hi! First of all, great job with clippy to everyone involved. I just installed it and ran `cargo clippy`, and I like how seamlessly it runs – it's just like running `cargo check`, but with more lints.…
-
Currently, when installing Clippy on stable via Rustup, the links to the documentation in the lint output point to the documentation of 0.0.212.
That documentation does not include all the lints whic…
-
Currently, `lint-es` only lints `src` and `src-docs`. It would be nice to also have the `scripts` directory linted by this script too.
-
i.e., it shouldn't fail on `ERROR`, `WARNING`, and `INFO`. Definitely on `ERROR`, and maybe on `WARNING` too.
It may be helpful also to define more clearly what type of lints go in which of these c…
-
This will take about a year but let's write down what we want anyway:
- [ ] GAT - in 1.65, we want it for `Encode::Encoder`
- [ ] pulling information from cargo workspace, especially `rust-version…
-
The `@protected` annotation should in my opinion allow use in extension methods:
```dart
class Class {
@protected
void protectedMethod();
}
extension Extension on Class {
void extensi…
-
We recently (#972) enabled haml-lint in order to get a grip on our messy haml.
Currently there are a lot of useful lints disabled because we have to work through their respective TODO's.
The TODO's …