mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
9 lines
264 B
Text
9 lines
264 B
Text
# -*- 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',
|
|
}
|