deactiveHooks function

List<String> deactiveHooks()

Returns the list of deactivated git hook file paths

Implementation

List<String> deactiveHooks() {
  return hooks
      .map((value) => '${Consts.herdsmanDirPath}/$value.deactive')
      .toList();
}