summaryrefslogtreecommitdiffstats
path: root/gitlint/tests/samples/user_rules/parent_package/my_commit_rules.py
blob: b143e6241c68ecce0a1a0b2bdd13e60205623794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- coding: utf-8 -*-

from gitlint.rules import CommitRule


class MyUserCommitRule(CommitRule):
    name = "my-user-cömmit-rule"
    id = "UC2"
    options_spec = []

    def validate(self, _commit):
        return []