1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-12 03:18:36 +00:00
Files
UXP/python/mozlint/test/linters/explicit_path.lint
T
2020-09-25 22:06:55 +08: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',
}