1[MESSAGES CONTROL] 2 3disable= 4 bad-indentation, 5 missing-docstring, 6 import-error, 7 no-name-in-module, 8 unused-argument, 9 invalid-name, 10 too-few-public-methods, 11 12[REPORTS] 13reports=no 14 15[VARIABLES] 16dummy-variables-rgx=_$|unused_ 17 18[FORMAT] 19indent-string=' ' 20 21# We suppress long line check for lines that contain only the URL (with or 22# without quote). 23ignore-long-lines=^\s*'?https?://\S+'?$