summaryrefslogtreecommitdiffstats
path: root/make-lint
diff options
context:
space:
mode:
Diffstat (limited to 'make-lint')
-rwxr-xr-xmake-lint42
1 files changed, 21 insertions, 21 deletions
diff --git a/make-lint b/make-lint
index 59c47222..b5df9e4a 100755
--- a/make-lint
+++ b/make-lint
@@ -43,30 +43,30 @@ IGNORE_PATHS = ('build', 'dist', 'install/po/test_i18n.py', 'lite-server.py',
class IPATypeChecker(TypeChecker):
# 'class': ('generated', 'properties',)
ignore = {
- 'ipalib.base.NameSpace': ('find',),
- 'ipalib.cli.Collector': ('__options',),
- 'ipalib.config.Env': ('*'),
- 'ipalib.plugable.API': ('Command', 'Object', 'Method', 'Property',
- 'Backend', 'log', 'plugins'),
- 'ipalib.plugable.Plugin': ('Command', 'Object', 'Method', 'Property',
+ 'ipalib.base.NameSpace': ['find'],
+ 'ipalib.cli.Collector': ['__options'],
+ 'ipalib.config.Env': ['*'],
+ 'ipalib.plugable.API': ['Command', 'Object', 'Method', 'Property',
+ 'Backend', 'log', 'plugins'],
+ 'ipalib.plugable.Plugin': ['Command', 'Object', 'Method', 'Property',
'Backend', 'env', 'debug', 'info', 'warning', 'error', 'critical',
- 'exception', 'context', 'log'),
- 'ipalib.plugins.baseldap.CallbackInterface': ('pre_callback',
- 'post_callback', 'exc_callback'),
- 'ipalib.plugins.misc.env': ('env',),
- 'ipalib.parameters.Param': ('cli_name', 'cli_short_name', 'label',
+ 'exception', 'context', 'log'],
+ 'ipalib.plugins.baseldap.CallbackInterface': ['pre_callback',
+ 'post_callback', 'exc_callback'],
+ 'ipalib.plugins.misc.env': ['env'],
+ 'ipalib.parameters.Param': ['cli_name', 'cli_short_name', 'label',
'doc', 'required', 'multivalue', 'primary_key', 'normalizer',
'default', 'default_from', 'create_default', 'autofill', 'query',
- 'attribute', 'include', 'exclude', 'flags', 'hint', 'alwaysask'),
- 'ipalib.parameters.Bool': ('truths', 'falsehoods'),
- 'ipalib.parameters.Int': ('minvalue', 'maxvalue'),
- 'ipalib.parameters.Float': ('minvalue', 'maxvalue'),
- 'ipalib.parameters.Data': ('minlength', 'maxlength', 'length',
- 'pattern', 'pattern_errmsg'),
- 'ipalib.parameters.Enum': ('values',),
- 'ipalib.parameters.List': ('separator', 'skipspace'),
- 'ipalib.parameters.File': ('stdin_if_missing'),
- 'urlparse.SplitResult': ('netloc',),
+ 'attribute', 'include', 'exclude', 'flags', 'hint', 'alwaysask',
+ 'sortorder', 'csv', 'csv_separator', 'csv_skipspace'],
+ 'ipalib.parameters.Bool': ['truths', 'falsehoods'],
+ 'ipalib.parameters.Int': ['minvalue', 'maxvalue'],
+ 'ipalib.parameters.Float': ['minvalue', 'maxvalue'],
+ 'ipalib.parameters.Data': ['minlength', 'maxlength', 'length',
+ 'pattern', 'pattern_errmsg'],
+ 'ipalib.parameters.Enum': ['values'],
+ 'ipalib.parameters.File': ['stdin_if_missing'],
+ 'urlparse.SplitResult': ['netloc'],
}
def _related_classes(self, klass):