mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 12:49:08 -04:00
style: stricter linting
This commit is contained in:
parent
ae5d895957
commit
7148fbf194
8 changed files with 15 additions and 9 deletions
|
@ -132,7 +132,7 @@ List<Object> initOptions({
|
|||
optsC.ref.target_directory = directory.toNativeUtf8().cast<Int8>();
|
||||
}
|
||||
|
||||
List<Pointer<Int8>> pathPointers = [];
|
||||
var pathPointers = <Pointer<Int8>>[];
|
||||
Pointer<Pointer<Int8>> strArray = nullptr;
|
||||
if (paths != null) {
|
||||
pathPointers = paths.map((e) => e.toNativeUtf8().cast<Int8>()).toList();
|
||||
|
|
|
@ -336,6 +336,7 @@ bool apply({
|
|||
if (hunkIndex != null) {
|
||||
_counter = 0;
|
||||
const except = -1;
|
||||
// ignore: omit_local_variable_types
|
||||
final git_apply_hunk_cb callback = Pointer.fromFunction(_hunkCb, except);
|
||||
payload = calloc<Int32>()..value = hunkIndex;
|
||||
opts.ref.payload = payload.cast();
|
||||
|
@ -369,6 +370,7 @@ Pointer<git_index> applyToTree({
|
|||
if (hunkIndex != null) {
|
||||
_counter = 0;
|
||||
const except = -1;
|
||||
// ignore: omit_local_variable_types
|
||||
final git_apply_hunk_cb callback = Pointer.fromFunction(_hunkCb, except);
|
||||
payload = calloc<Int32>()..value = hunkIndex;
|
||||
opts.ref.payload = payload.cast();
|
||||
|
|
|
@ -160,6 +160,7 @@ int _stashCb(
|
|||
/// Loop over all the stashed states.
|
||||
List<Stash> list(Pointer<git_repository> repo) {
|
||||
const except = -1;
|
||||
// ignore: omit_local_variable_types
|
||||
final git_stash_cb callBack = Pointer.fromFunction(_stashCb, except);
|
||||
libgit2.git_stash_foreach(repo, callBack, nullptr);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue