Skip to content

Commit 71c28c0

Browse files
author
shaark
committed
issue-167. fixed no_empty_block_rule format
1 parent 199cca6 commit 71c28c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/lints/no_empty_block/no_empty_block_rule.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class NoEmptyBlockRule extends SolidLintRule<NoEmptyBlockParameters> {
8080
context.registry.addDeclaration((node) {
8181
final isIgnored = config.parameters.exclude.shouldIgnore(node);
8282
if (isIgnored) return;
83-
83+
8484
final visitor = NoEmptyBlockVisitor();
8585
node.accept(visitor);
8686

0 commit comments

Comments
 (0)