Skip to content

Commit 5daaa9d

Browse files
committed
docs: use spaces instead of tabs
1 parent b6993a7 commit 5daaa9d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ To use the recommended lint rules drop the following into your `analysis_options
1010
plugins:
1111
grumpy_lints:
1212
diagnostics:
13-
leaf_preview_must_not_use_injectables_or_navigation: true
14-
must_call_in_constructor: true
15-
abstract_classes_should_set_log_group: true
16-
concrete_classes_should_set_log_tag: true
17-
base_class: true
18-
domain_factory_from_di: true
19-
prefer_domain_di_factory: true
20-
lifecycle_mixin_requires_singleton: true
13+
leaf_preview_must_not_use_injectables_or_navigation: true
14+
must_call_in_constructor: true
15+
abstract_classes_should_set_log_group: true
16+
concrete_classes_should_set_log_tag: true
17+
base_class: true
18+
domain_factory_from_di: true
19+
prefer_domain_di_factory: true
20+
lifecycle_mixin_requires_singleton: true
2121
```
2222
2323

bin/readme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void main(List<String> args) {
7171

7272
final yamlMatch = yamlRulesRegex.firstMatch(template)!;
7373

74-
final indent = '\t' * int.parse(match.group(1) ?? '0');
74+
final indent = ' ' * int.parse(match.group(1) ?? '0');
7575

7676
final yamlRules = rules.map((r) => '$indent${r.name}: true').join('\n');
7777

0 commit comments

Comments
 (0)