blob: be6d0045cf2e8d9710d58e91f9aa3f28c6a80763 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- 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',
}
|