Files
UXP-Fixed/python/mozlint/test/linters/explicit_path.lint
T
2018-02-02 04:16:08 -05:00

14 lines
310 B
Python

# -*- 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',
}