1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-07-20 22:18:32 +00:00
Files
UXP/python/mozlint/test/linters/invalid_exclude.lint
T

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