allowAutomaticFix property
bool
get
allowAutomaticFix
Allow using dart fix
Default is false
Implementation
bool get allowAutomaticFix {
final YamlMap? config = yaml['hooklint'];
return config?['autofix'] ?? false;
}