in linter/main.go [103:110]
func AlwaysRunCheck() presubmitCheck {
return presubmitCheck(func(presubmitConfig config.Presubmit, fileContentsString string) (bool, int, string) {
if presubmitConfig.AlwaysRun {
return false, findLineNumber(fileContentsString, "always_run:"), "Please set always_run to false"
}
return true, 0, ""
})
}