-
Write a github action that validates a `fsl` machine
Write a separate github action that lints a `fsl` machine
-
### VS Code version
1.94.1
### Extension version
2024.10.40751 (pre-release)
### Biome version
1.9.3
### Operating system
- [X] Windows
- [ ] macOS
- [ ] Linux
### Descriptioā¦
-
After seeing the new-ish cargo metadata lints, I was thinking it would interesting to have a lint like:
> **crate_license**
> Check the license information in the crate metadata and restrict to _sā¦
-
I tried this code:
```rust
// in main.rs
#![warn(clippy::all, clippy::pedantic)]
mod foo;
fn main() {
foo::foo();
}
//in foo.rs
#![allow(clippy::single_component_path_imports)ā¦
-
### What it does
When a library tries to be as "clean" as possible, it may want to prevent any accidental panics. Panics could be caused by many different calls. Clippy offers `unwrap_used`, `todo`, ā¦
-
This tracker is for issues related to:
* Dart analyzer and linter
## Description
As the language grows, we often introduce new lint rules to maintain and improve code quality. However, introdā¦
-
https://dart-lang.github.io/linter/lints/prefer_single_quotes.html
- Most Workiva packages use single quotes
-
### Testmerges
N/A
### Round ID
N/A
### Description of the issue
qdel in new means something is getting deleted before ssgarbage even thinks it has been created, this is bad.
### Whā¦
-
**Describe the bug**
I have a python program that runs multiple linters on our salt stack tree. When running salt-lint, salt-lint sees that it has no tty and assumes that stdin contains the file to bā¦
-
## unnecessary_future_value_in_async_return
*AVOID* returning a Future value in the return statement of an `async` function.
## Details
There is no need to wrap the returned value in `Future.ā¦