mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-10 17:19:29 +00:00
11 lines
292 B
Python
11 lines
292 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
|
|
LINTER = {
|
|
'name': "BadExcludeLinter",
|
|
'description': "Has an invalid exclude directive.",
|
|
'exclude': [0, 1], # should be a list of strings
|
|
'type': 'string',
|
|
'payload': 'foobar',
|
|
}
|