summaryrefslogtreecommitdiffstats
path: root/python/mozlint/test/linters/invalid_exclude.lint
blob: 2d84144be139e8c2413a498fcd4063f077f6520a (plain)
1
2
3
4
5
6
7
8
9
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-

LINTER = {
    'name': "BadExcludeLinter",
    'description': "Has an invalid exclude directive.",
    'exclude': [0, 1],  # should be a list of strings
    'type': 'string',
    'payload': 'foobar',
}