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

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