style: sort imports alphabetically

This commit is contained in:
Aleksey Kulikov 2021-10-22 15:10:04 +03:00
parent a24070c44c
commit a806d0a312
87 changed files with 281 additions and 123 deletions

View file

@ -1,8 +1,10 @@
import 'dart:ffi';
import 'package:ffi/ffi.dart';
import 'libgit2_bindings.dart';
import '../error.dart';
import '../util.dart';
import 'libgit2_bindings.dart';
/// Get the object type of an object.
int type(Pointer<git_object> obj) => libgit2.git_object_type(obj);