-
Transitioning from pedantic to recommended lints there are a number of lints disabled that need vetting.
- [ ] avoid_renaming_method_parameters
- [x] camel_case_types
- [ ] constant_identifier_…
-
```dart
E id(E value) => value;
void main() {
int Function(int) intId = id;
var list = [intId];
}
```
This code gets a "omit_local_variable_types" lint on the `intId` variable.
Changing…
lrhn updated
6 months ago
-
Looks like a macro can't accept enum values as parameters although it can declare such parameters and have default values for them.
macro.dart:
```dart
import 'dart:async';
import 'package:m…
-
| | |
| --- | --- |
| Bugzilla Link | [30936](https://llvm.org/bz30936) |
| Version | trunk |
| OS | All |
| Reporter | LLVM Bugzilla Contributor |
| CC | @Xazax-hun |
## Extended Description
Stat…
-
https://github.com/MaartenGr/BERTopic
-
I propose to implement extension system in the Olive GUI. This system will work in the folder `extensions` and will allow to use import / export / analyze extensions.
## directory structure:
```…
-
### Checklist
- [X] I've searched for similar issues and couldn't find anything matching
- [X] I've discussed this feature request in the [K8sGPT Slack](https://k8sgpt.slack.com) and got positive fee…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR30936](https://bugs.llvm.org/show_bug.cgi?id=30936) |
| Status | NEW |
| Importance | P normal |
|…
-
The following example crashes the analysis server:
```dart
abstract class JsonReporter {
final IOSink output;
final int formatVersion;
const JsonReporter(this.output, this.formatVersi…
-
We don't know which value we will get, so it is fair to say that the value is unknown.
The implementation is relatively straightforward.
But it breaks a couple of language/ tests, e.g. `language…