summaryrefslogtreecommitdiffstats
path: root/gitlint-core/gitlint/tests/samples/user_rules/my_commit_rules.py
blob: 02c922dfe77810017e39fbf9551356706741217f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from gitlint.rules import CommitRule, RuleViolation
from gitlint.options import IntOption


class MyUserCommitRule(CommitRule):
    name = "my-üser-commit-rule"
    id = "UC1"
    options_spec = [IntOption("violation-count", 1, "Number of violåtions to return")]

    def validate(self, _commit):
        violations = []
        for i in range(1, self.options["violation-count"].value + 1):
            violations.append(RuleViolation(self.id, "Commit violåtion %d" % i, "Contënt %d" % i, i))

        return violations


# The below code is present so that we can test that we actually ignore it


def func_should_be_ignored():
    pass


global_variable_should_be_ignored = True