From e071c6facbc7f86bffbc0328b2e633f4e4bc405a Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 23 Jul 2019 11:24:26 +0200 Subject: [PATCH] Dumper: Add pylintrc file ...to suppress some common warnings generated from pylint or respectively pyls. We usually fail to follow the snake_case naming style and we tend to have only limited documentation of these files. Change-Id: Iaecf767fac68f3be8ad88ccff91a0f5ac24a43e4 Reviewed-by: hjk --- share/qtcreator/debugger/.pylintrc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 share/qtcreator/debugger/.pylintrc diff --git a/share/qtcreator/debugger/.pylintrc b/share/qtcreator/debugger/.pylintrc new file mode 100644 index 00000000000..dabd2ee07ad --- /dev/null +++ b/share/qtcreator/debugger/.pylintrc @@ -0,0 +1,11 @@ +[MESSAGES CONTROL] +# Enable 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. +#enable= + +# 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 (only on the command line, not in the configuration file where +# it should appear only once). +disable=invalid-name,missing-docstring