aboutsummaryrefslogtreecommitdiff
blob: 716c5129cac6c9300625068bad8889aecbbf3796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2015-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

doc = """Whitespace plug-in module for repoman LineChecks.
Performs checks for useless whitespace in ebuilds."""
__doc__ = doc[:]


module_spec = {
	'name': 'do',
	'description': doc,
	'provides':{
		'whitespace-check': {
			'name': "whitespace",
			'sourcefile': "whitespace",
			'class': "EbuildWhitespace",
			'description': doc,
		},
		'blankline-check': {
			'name': "blankline",
			'sourcefile': "blank",
			'class': "EbuildBlankLine",
			'description': doc,
		},
	},
	'version': 1,
}