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

LINTER = {
    'name': "ExplicitPathLinter",
    'description': "Only lint a specific file name",
    'rule': 'no-foobar',
    'include': [
        'no_foobar.js',
    ],
    'type': 'string',
    'payload': 'foobar',
}