@@ -822,6 +822,12 @@ PostCheckout:
822
822
flags : ['install']
823
823
include : ' composer.json'
824
824
825
+ GitLfs :
826
+ enabled : false
827
+ description : ' Check status of lockable files tracked by Git LFS'
828
+ required_executable : ' git-lfs'
829
+ install_command : ' brew install git-lfs'
830
+
825
831
IndexTags :
826
832
enabled : false
827
833
description : ' Generate tags file from source'
@@ -906,6 +912,12 @@ PostCommit:
906
912
flags : ['HEAD~', 'HEAD']
907
913
install_command : ' npm install -g git-guilt'
908
914
915
+ GitLfs :
916
+ enabled : false
917
+ description : ' Check status of lockable files tracked by Git LFS'
918
+ required_executable : ' git-lfs'
919
+ install_command : ' brew install git-lfs'
920
+
909
921
IndexTags :
910
922
enabled : false
911
923
description : ' Generate tags file from source'
@@ -974,6 +986,12 @@ PostMerge:
974
986
flags : ['install']
975
987
include : ' composer.json'
976
988
989
+ GitLfs :
990
+ enabled : false
991
+ description : ' Check status of lockable files tracked by Git LFS'
992
+ required_executable : ' git-lfs'
993
+ install_command : ' brew install git-lfs'
994
+
977
995
IndexTags :
978
996
enabled : false
979
997
description : ' Generate tags file from source'
@@ -1082,6 +1100,25 @@ PrePush:
1082
1100
required : false
1083
1101
quiet : false
1084
1102
1103
+ Brakeman :
1104
+ enabled : false
1105
+ description : ' Check for security vulnerabilities'
1106
+ required_executable : ' brakeman'
1107
+ flags : ['--exit-on-warn', '--quiet', '--summary']
1108
+ install_command : ' gem install brakeman'
1109
+
1110
+ GitLfs :
1111
+ enabled : false
1112
+ description : ' Upload files tracked by Git LFS'
1113
+ required_executable : ' git-lfs'
1114
+ install_command : ' brew install git-lfs'
1115
+
1116
+ Minitest :
1117
+ enabled : false
1118
+ description : ' Run Minitest test suite'
1119
+ command : ['ruby', '-Ilib:test', '-rminitest', "-e 'exit! Minitest.run'"]
1120
+ include : ' test/**/*_test.rb'
1121
+
1085
1122
ProtectedBranches :
1086
1123
enabled : false
1087
1124
description : ' Check for illegal pushes to protected branches'
@@ -1115,28 +1152,11 @@ PrePush:
1115
1152
required_executable : ' rake'
1116
1153
install_command : ' gem install rake'
1117
1154
1118
- Minitest :
1119
- enabled : false
1120
- description : ' Run Minitest test suite'
1121
- command : ['ruby', '-Ilib:test', '-rminitest', "-e 'exit! Minitest.run'"]
1122
- include : ' test/**/*_test.rb'
1123
-
1124
1155
TestUnit :
1125
1156
enabled : false
1126
1157
description : ' Run Test::Unit test suite'
1127
1158
command : ['ruby', '-Ilib:test', '-rtest/unit', "-e 'exit! Test::Unit::AutoRunner.run'"]
1128
1159
1129
- Brakeman :
1130
- enabled : false
1131
- description : ' Check for security vulnerabilities'
1132
- required_executable : ' brakeman'
1133
- flags : ['--exit-on-warn', '--quiet', '--summary']
1134
- install_command : ' gem install brakeman'
1135
-
1136
- GitLfs :
1137
- enabled : false
1138
- description : ' Upload files tracked by Git LFS'
1139
-
1140
1160
# Hooks that run during `git rebase`, before any commits are rebased.
1141
1161
# If a hook fails, the rebase is aborted.
1142
1162
PreRebase :
0 commit comments