-
Currently the dartanalyzer does not run on test files and it runs separately for each module. We should generate a single file which references all of the files across all of the modules and then run …
-
It would really help to display the source line for such dartanalyzer error messages:
`dist/dart/angular2/:[hint] Unused import (/home/travis/build/angular/angular/dist/dart/angular2/test/directives/…
-
```
$ dartanalyzer --version
dartanalyzer version 2.6.0-edge.36985859e421a9fbbdfc56379506b2a367c7d4e9
```
I have the `prefer_const_constructors` lint enabled. Running the analyzer over this file…
-
After upgrading to new flutter there's issues with the ffi file, see outcome below.
```
../../../.pub-cache/hosted/pub.dartlang.org/bitmap-0.0.5/lib/ffi.dart:22:32: Error: Method not found: 'Point…
-
According to the [NNBD specification](https://github.com/dart-lang/language/blob/master/accepted/future-releases/nnbd/feature-specification.md#static-errors)
> It is an error if the static type of…
-
```dart
class C {
String test = "Show must go on";
}
main() {
C? c = null;
c ?.. test;
}
```
Analyzer with --enable-experiment=non-nullable option produces " error - The expression i…
-
- [x] Re-use facades from `angular/angular`
- [x] Dart output is generated from TS source
- [x] Dart output passes DartAnalyzer
- [x] Dart code is built and passes DartAnalyzer on Travis
- [ ] Demo si…
-
This issue is related to the **Analyzer**.
I have a function that takes an enum enumerated type as a parameter and based on its value, returns a string. I used a `switch` and `case`. I cover every …
-
I'm currently trying to linter this html file:
```
Final Infra TI
Proyecto Final Infra TI
Integrantes:
Juan Sebastian Obando
Nicole Andrea…
-
Consider the following library:
```dart
import 'dart:async';
Future foo(bool b) async {
if (b) return;
return null;
}
```
As of 54011e5622423d9bdbe4efaa5a37dff3b7771750, `dartanalyze…