| OLD | NEW |
| 1 # lint Python modules using external checkers. | 1 # lint Python modules using external checkers. |
| 2 # | 2 # |
| 3 # This is the main checker controlling the other ones and the reports | 3 # This is the main checker controlling the other ones and the reports |
| 4 # generation. It is itself both a raw checker and an astng checker in order | 4 # generation. It is itself both a raw checker and an astng checker in order |
| 5 # to: | 5 # to: |
| 6 # * handle message activation / deactivation at the module level | 6 # * handle message activation / deactivation at the module level |
| 7 # * handle some basic but necessary stats'data (number of classes, methods...) | 7 # * handle some basic but necessary stats'data (number of classes, methods...) |
| 8 # | 8 # |
| 9 [MASTER] | 9 [MASTER] |
| 10 | 10 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 # Maximum number of lines in a module | 296 # Maximum number of lines in a module |
| 297 max-module-lines=1000 | 297 max-module-lines=1000 |
| 298 | 298 |
| 299 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 | 299 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 |
| 300 # tab). | 300 # tab). |
| 301 indent-string=' ' | 301 indent-string=' ' |
| 302 | 302 |
| 303 | 303 |
| 304 [MESSAGES CONTROL] | 304 [MESSAGES CONTROL] |
| 305 disable-msg=C0301,C0111,C0103,R0201,W0702,C0324 | 305 disable-msg=C0301,C0111,C0103,R0201,W0702,C0324 |
| OLD | NEW |