Hi, This works fine:
$ pylint --disable=C0111 --disable=C0102 mymodule/bar.py ************* Module mymodule.bar E0611: 4: No name 'foo' in module '' W0611: 4: Unused import bla But this does not: $ pylint --rcfile rc mymodule/bar.py ************* Module mymodule.bar C0111: 1: Missing docstring E0611: 4: No name 'foo' in module '' W0611: 4: Unused import bla $ cat rc [REPORTS] include-ids=yes reports=no [MESSAGES CONTROL] disable=C0111 disable=C0102 Is this a known bug? --generate-rcfile also says: # Disable the message, report, category or checker with the given id(s). You # can either give multiple identifier separated by comma (,) or put this option # multiple time. Best, -Nikolaus -- »Time flies like an arrow, fruit flies like a Banana.« PGP fingerprint: 5B93 61F8 4EA2 E279 ABF6 02CF A9AD B7F8 AE4E 425C _______________________________________________ Python-Projects mailing list Python-Projects@lists.logilab.org http://lists.logilab.org/mailman/listinfo/python-projects