Files
UXP-Fixed/python/mozlint/test/linters/explicit_path.lint
2020-09-24 08:10:23 +00:00

13 lines
282 B
Plaintext

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