You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -194,7 +195,18 @@ All features with links to their page in the documentation:
194
195
A wrapper around `FutureBuilder` which makes it easy to display the various states of fetching data from the given `Future`. See [example](https://github.com/devj3ns/fleasy/blob/main/example/lib/main.dart).
A wrapper around `StreamBuilder` which makes it easy to display the various states of streaming data from the given `Stream`. See [example](https://github.com/devj3ns/fleasy/blob/main/example/lib/main.dart).
197
-
198
+
199
+
-### Analysis options:
200
+
You can use the same analysis options which this package uses by simply including them in your `analysis_options.yaml` file:
201
+
```yaml
202
+
include: package:fleasy/analysis_options.yaml
203
+
```
204
+
They are based on:
205
+
- [package:flutter_lints](https://pub.dev/packages/flutter_lints) (therefore also [package:lints](https://pub.dev/packages/lints))
206
+
- my favorite rules from [package:dart_code_metrics](https://pub.dev/packages/dart_code_metrics)
207
+
- my favorite lint rules which are not present in [package:flutter_lints](https://pub.dev/packages/flutter_lints)
208
+
209
+
For more details, have a look at the `analysis_options.yaml` file [here](https://github.com/devj3ns/fleasy/blob/main/lib/analysis_options.yaml).
0 commit comments