pht('Explicit %s', '@no'.'commit'), ); } public function lintPath($path) { if ($this->getEngine()->getCommitHookMode()) { $this->lintNoCommit($path); } } private function lintNoCommit($path) { $data = $this->getData($path); $deadly = '@no'.'commit'; $offset = strpos($data, $deadly); if ($offset !== false) { $this->raiseLintAtOffset( $offset, self::LINT_NO_COMMIT, pht( 'This file is explicitly marked as "%s", which blocks commits.', $deadly), $deadly); } } }