Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 Google Inc. All rights reserved. | 1 # Copyright (c) 2012 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 50 # List of plugins (as comma separated values of python modules names) to load, | 50 # List of plugins (as comma separated values of python modules names) to load, |
| 51 # usually to register additional checkers. | 51 # usually to register additional checkers. |
| 52 load-plugins= | 52 load-plugins= |
| 53 | 53 |
| 54 | 54 |
| 55 [MESSAGES CONTROL] | 55 [MESSAGES CONTROL] |
| 56 | 56 |
| 57 # Enable the message, report, category or checker with the given id(s). You can | 57 # Enable the message, report, category or checker with the given id(s). You can |
| 58 # either give multiple identifier separated by comma (,) or put this option | 58 # either give multiple identifier separated by comma (,) or put this option |
| 59 # multiple time. | 59 # multiple time. |
| 60 #enable= | 60 enable= |
| 61 print-statement, | |
|
qyearsley
2016/05/29 21:00:33
Pylint prints errors about print statements if --e
| |
| 61 | 62 |
| 62 # Disable the message, report, category or checker with the given id(s). You | 63 # Disable the message, report, category or checker with the given id(s). You |
| 63 # can either give multiple identifier separated by comma (,) or put this option | 64 # can either give multiple identifier separated by comma (,) or put this option |
| 64 # multiple time (only on the command line, not in the configuration file where | 65 # multiple time (only on the command line, not in the configuration file where |
| 65 # it should appear only once). | 66 # it should appear only once). |
| 66 # CHANGED: | 67 # CHANGED: |
| 67 disable= | 68 disable= |
| 68 invalid-name, | 69 invalid-name, |
| 69 missing-docstring, | 70 missing-docstring, |
| 70 line-too-long, | 71 line-too-long, |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 301 # Create a graph of internal dependencies in the given file (report RP0402 must | 302 # Create a graph of internal dependencies in the given file (report RP0402 must |
| 302 # not be disabled) | 303 # not be disabled) |
| 303 int-import-graph= | 304 int-import-graph= |
| 304 | 305 |
| 305 | 306 |
| 306 [EXCEPTIONS] | 307 [EXCEPTIONS] |
| 307 | 308 |
| 308 # Exceptions that will emit a warning when being caught. Defaults to | 309 # Exceptions that will emit a warning when being caught. Defaults to |
| 309 # "Exception" | 310 # "Exception" |
| 310 overgeneral-exceptions=Exception | 311 overgeneral-exceptions=Exception |
| OLD | NEW |