Starting with pylint-1.0.0 the --include-ids argument is no longer allowed.
pylint-1.0.0
--include-ids
How do I get:
************* Module foo.bar E:19
The new way to specify this is the command line parameter '--msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}'.
'--msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}'
The proper command which can be used is
python3 -m pylint --msg-template="{path}||{msg_id}||{symbol}||{category}||{line}||{column}||{msg}" sscript.py