summaryrefslogtreecommitdiffstats
path: root/gitlint/tests/samples/user_rules/parent_package/my_commit_rules.py
blob: b73a305d04c3b327cbc37cadc27fa7e9ff5b5fab (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 = u"my-user-cömmit-rule"
    id = "UC2"
    options_spec = []

    def validate(self, _commit):
        return []