Giuseppe Cianci

Results 9 comments of Giuseppe Cianci

> Thank you for the 0.7.0 update, the default values made my code a little bit simpler :) > > One thing that I still have to work around are...

I used the sample linter plugin from the documentation: ```dart import 'dart:isolate'; import 'package:analyzer/dart/analysis/results.dart'; import 'package:custom_lint_builder/custom_lint_builder.dart'; // This is the entrypoint of our custom linter void main(List args, SendPort sendPort)...

It's actually faster in the IDE than on the command line. Still a bit slower in the large project compared to the small project, but it's not that big of...

I've noticed that `custom_lint` analyzes code imported by plugins as well, e.g. `ios/.symlinks/plugins/flutter_secure_storage/example/lib/main.dart`. I think `custom_lint` shouldn't do this because `dart analyze` doesn't do that either. This also contributes to...

I just tried it and it works great with `fvm` @TimWhiting. With your changes it now only takes 44 s to run `flutter pub run custom_lint` in my large project....

I'm currently using the following workaround on CI: 1. run `flutter pub run custom_lint` 2. run a script which removes `custom_lint` from `analysis_options.yaml` 3. run `flutter analyze` Python script for...

Hey @Lyokone, I have written a `GoldenTestDeviceScenario` widget which takes a `Device` containing the device configuration to achieve this. The `Device` is basically the same class as the one from...

@mrgnhnt96 You can use the `loadAppFonts` function from `golden_toolkit` until `alchemist` supports this as well. Then text should be rendered in the platform goldens as well. ```dart import 'package:alchemist/alchemist.dart'; import...

I've encountered the same issue and another problem I have found with regards to this is that running `goldenTest` without a `GoldenTestGroup` also causes a similar issue. I added my...