Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
- `YAMLWriter`:
  - Added `allowUnquotedStrings`.
  - Rename `identSize` to `indentSize`.
  - Deprecate `identSize` field.
- lints: ^2.0.1
- test: ^1.22.0
- dependency_validator: ^3.2.2
- coverage: ^1.6.1
  • Loading branch information
gmpassos committed Dec 4, 2022
1 parent 861e8ed commit bd3b035
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/yaml_writer_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ foo:
// ignore: deprecated_member_use_from_same_package
var yamlWriter = YAMLWriter(identSize: 3);

// ignore: deprecated_member_use_from_same_package
expect(yamlWriter.identSize, equals(yamlWriter.indentSize));

var tree = {
'foo': {
's1': 'Some string',
Expand Down

0 comments on commit bd3b035

Please sign in to comment.