style: stricter linting

This commit is contained in:
Aleksey Kulikov 2021-10-23 12:31:18 +03:00
parent f3fbc80f8e
commit 4717aab57f
84 changed files with 773 additions and 653 deletions

View file

@ -1,3 +1,5 @@
// ignore_for_file: avoid_print
import 'dart:io';
import 'package:libgit2dart/libgit2dart.dart';
import '../test/helpers/util.dart';
@ -28,8 +30,10 @@ void main() {
// Set value of config variable
repoConfig['core.variable'] = 'value';
print('\nNew value for variable '
'"core.variable": ${repoConfig['core.variable']}');
print(
'\nNew value for variable '
'"core.variable": ${repoConfig['core.variable']}',
);
// Delete variable
repoConfig.delete('core.variable');