Skip to content

Commit 094064c

Browse files
author
Jens Becker
committed
[bump] v0.3.1
1 parent 8f12135 commit 094064c

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.3.1
2+
- **Feat:** make analysis_options.yaml public
3+
14
# 0.3.0
25

36
- **Add** Flashbar extensions to BuildContext

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ The goal is that by using this package you have to write less (repeating) and mo
2828
- [`DeviceType` helper class](#devicetype-helper-class)
2929
- [`Insets` helper class](#insets-helper-class)
3030
- [Flutter Widgets](#flutter-widgets)
31+
- [Analysis Options](#analysis-options)
3132

3233
## Features
3334

@@ -194,7 +195,18 @@ All features with links to their page in the documentation:
194195
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).
195196
- #### [EasyStreamBuilder<T>](https://pub.dev/documentation/fleasy/latest/fleasy/EasyStreamBuilder-class.html)
196197
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).
198210

199211
## To-Do's:
200212
- [x] Improve README

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fleasy
22
description: Useful and easy to use extensions, helper classes and widgets to create Flutter apps easier.
3-
version: 0.3.0
3+
version: 0.3.1
44
repository: https://github.com/devj3ns/fleasy
55
issue_tracker: https://github.com/devj3ns/fleasy/issues
66

0 commit comments

Comments
 (0)