mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 22:48:32 +00:00
10 lines
264 B
Plaintext
10 lines
264 B
Plaintext
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
LINTER = {
|
|
'name': "BadExcludeLinter",
|
|
'description': "Has an invalid exclude directive.",
|
|
'exclude': [0, 1], # should be a list of strings
|
|
'type': 'string',
|
|
'payload': 'foobar',
|
|
}
|