|
12 | 12 | # See the License for the specific language governing permissions and |
13 | 13 | # limitations under the License. |
14 | 14 |
|
15 | | -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
16 | | -# Summary: config file for Pylint versions 3.0 and above. |
| 15 | +# Summary: config file for Pylint versions 4.0 and above. |
17 | 16 | # See https://pylint.readthedocs.io/ for info about options available. |
18 | | -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
19 | 17 |
|
20 | 18 | [MAIN] |
21 | 19 |
|
@@ -44,12 +42,6 @@ clear-cache-post-run=no |
44 | 42 | # run arbitrary code. |
45 | 43 | extension-pkg-allow-list= |
46 | 44 |
|
47 | | -# A comma-separated list of package or module names from where C extensions may |
48 | | -# be loaded. Extensions are loading into the active Python interpreter and may |
49 | | -# run arbitrary code. (This is an alternative name to extension-pkg-allow-list |
50 | | -# for backward compatibility.) |
51 | | -extension-pkg-whitelist= |
52 | | - |
53 | 45 | # Return non-zero exit code if any of these messages/categories are detected, |
54 | 46 | # even if score is above --fail-under value. Syntax same as enable. Messages |
55 | 47 | # specified are enabled, while categories only check already-enabled messages. |
@@ -121,10 +113,6 @@ recursive=yes |
121 | 113 | # source root. |
122 | 114 | source-roots= |
123 | 115 |
|
124 | | -# When enabled, pylint would attempt to guess common misconfiguration and emit |
125 | | -# user-friendly hints instead of false-positive error messages. |
126 | | -suggestion-mode=yes |
127 | | - |
128 | 116 | # Allow loading of arbitrary C extensions. Extensions are imported into the |
129 | 117 | # active Python interpreter and may run arbitrary code. |
130 | 118 | unsafe-load-any-extension=no |
@@ -185,11 +173,6 @@ class-rgx=[A-Z_][a-zA-Z0-9]+$ |
185 | 173 | # Naming style matching correct constant names. |
186 | 174 | const-naming-style=UPPER_CASE |
187 | 175 |
|
188 | | -# Regular expression matching correct constant names. Overrides const-naming- |
189 | | -# style. If left empty, constant names will be checked with the set naming |
190 | | -# style. |
191 | | -const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ |
192 | | - |
193 | 176 | # Minimum line length for functions/classes that require docstrings, shorter |
194 | 177 | # ones are exempt. |
195 | 178 | docstring-min-length=-1 |
|
0 commit comments