Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a bunch of linting errors from the codebase | Claudiu Popa | 2019-05-22 | 1 | -2/+1 |
| | |||||
* | Reformat the code with black | Claudiu Popa | 2018-09-17 | 1 | -0/+2 |
| | |||||
* | Grammar fixes to docs (#2492) | Drew | 2018-09-15 | 1 | -1/+1 |
| | | | Fix grammar error in pylintrc files and CONTRIBUTORS.txt. | ||||
* | Remove the maximum length from the style regular expressions (#2290) | SergeyKosarchuk | 2018-07-17 | 1 | -4/+4 |
| | | | Close #2047 | ||||
* | We don't need any reports | Claudiu Popa | 2018-05-17 | 1 | -1/+1 |
| | |||||
* | Enable no-member | Nick Drozd | 2018-01-04 | 1 | -1/+0 |
| | |||||
* | Set max-statements to 100 | Nick Drozd | 2018-01-04 | 1 | -2/+1 |
| | | | | | Currently the greatest number of statements is 83 (checkers.typecheck). 100 seems like a reasonable cap. | ||||
* | Set max-args to 10 | Nick Drozd | 2018-01-04 | 1 | -2/+1 |
| | | | | | | | Although as Alan Perlis said, "if you have a procedure with ten parameters, you probably missed some." http://cpsc.yale.edu/epigrams-programming | ||||
* | Enable redefined-builtin | Nick Drozd | 2018-01-04 | 1 | -1/+0 |
| | |||||
* | Enable import-error | Nick Drozd | 2018-01-04 | 1 | -1/+0 |
| | |||||
* | Set max-attributes to 11 | Nick Drozd | 2018-01-04 | 1 | -2/+1 |
| | | | | | The greatest number of instance attributes is 21. The next greatest is 11, which is more reasonable. | ||||
* | Set max-locals to 25 | Nick Drozd | 2018-01-04 | 1 | -2/+1 |
| | |||||
* | Set max-branches to 26 | Nick Drozd | 2018-01-04 | 1 | -2/+1 |
| | | | | | | checkers.typecheck has a function with 43 branches, which is comically many. The next-branchiest has 26 (with no obvious way to reduce that number), so that's the max. | ||||
* | Enable broad-except check | Nick Drozd | 2018-01-04 | 1 | -1/+0 |
| | | | | | | This was globally disabled, which is not a great idea, and also locally disabled in a few places. I enabled it globally and consolidated the local disables. | ||||
* | Set max-module-lines to 2000 | Nick Drozd | 2018-01-04 | 1 | -2/+1 |
| | | | | | The greatest number of lines in a module at present is 1829 (checkers.base). 2000 seems like a reasonable cap. | ||||
* | Set max-public-methods to 25 | Nick Drozd | 2018-01-04 | 1 | -2/+1 |
| | | | | | The greatest number of public methods at present is 24 (checkers.variables). 25 seems likes a reasonable cap. | ||||
* | Set max-returns to 11 | Nick Drozd | 2018-01-04 | 1 | -2/+1 |
| | | | | | | Previously, the greatest number of return statements in a function was 15 (checkers.typecheck). 11 is the lowest I could get it without aggressive rewriting. | ||||
* | Organize disabled pylint messages | Nick Drozd | 2018-01-04 | 1 | -7/+20 |
| | | | | Design messages are organized by length, others alphabetically | ||||
* | Get rid of old pylintrc disable redefined-variable-type | Nick Drozd | 2018-01-04 | 1 | -2/+0 |
| | |||||
* | Remove anomalous-backslash-in-string from pylintrc ignore list (#1404) | Łukasz Rogalski | 2017-04-02 | 1 | -2/+1 |
| | |||||
* | Added threading.local to ignored classes default list (#946) | Jürgen Hermann | 2016-06-24 | 1 | -1/+1 |
| | | | | | | | Added threading.local to ignored classes default list Note that the implementation names for Python 2/3 are used (threading.local is an alias). Also changed related places for consistency. | ||||
* | Made list of property-like decorators configurable. (#942) | Yannack | 2016-06-20 | 1 | -0/+3 |
| | | | | | Made list of property-like decorators configurable. This makes it possible to configure pylint to accept custom decorators similar to @property without the need to explicitly add a pylint directive #pylint disable=invalid-name | ||||
* | Removed the bad-builtin check | Claudiu Popa | 2016-05-10 | 1 | -1/+1 |
| | | | | | | | | Using some of the builtins is just fine, we don't have to warn about using filter or map, since it imposes a split opinion, that can't be easily be agreed with in certain cases, leading to the disabling of the check. As such, is far more suited to remove the check. | ||||
* | Make list of contextmanager decorators configurable. | Filipe Brandenburger | 2016-02-02 | 1 | -0/+4 |
| | | | | | | | | | This makes it possible to configure pylint to recognize backports of contextlib or other decorators similar to @contextmanager without the need for an explicit #pylint disable=not-context-manager Tested with a backport of contextlib from Python 3 onto Python 2 imported under a different name. | ||||
* | Basic travis support. | Claudiu Popa | 2015-12-16 | 1 | -1/+3 |
| | | | | Some of the pylint errors were also removed. | ||||
* | error E0201 is obsolete - now E1101 | Anentropic | 2015-11-18 | 1 | -1/+1 |
| | | | | | --HG-- branch : remove-E0201-references | ||||
* | Remove deprecated option. | Claudiu Popa | 2015-10-09 | 1 | -3/+0 |
| | |||||
* | --comment flag was obsoleted and it will be removed in Pylint 1.6. | Claudiu Popa | 2015-08-20 | 1 | -4/+0 |
| | |||||
* | Remove deprecated options from the configuration file. | Claudiu Popa | 2015-08-20 | 1 | -17/+0 |
| | |||||
* | ignored-classes option can work with qualified names, as well as with Unix ↵ | Claudiu Popa | 2015-07-07 | 1 | -1/+1 |
| | | | | | | patterns. Closes issues #244 and #297. | ||||
* | Ignore bad-builtin. | Claudiu Popa | 2015-05-17 | 1 | -1/+1 |
| | |||||
* | Fix some pylint warnings over pylint's codebase. | Claudiu Popa | 2015-05-16 | 1 | -2/+2 |
| | |||||
* | Get rid of abstract-method warnings emitted over pylint's codebase. | Claudiu Popa | 2015-05-07 | 1 | -1/+1 |
| | |||||
* | Disable in pylintrc only the actual problems from the codebase. | Claudiu Popa | 2015-05-07 | 1 | -1/+10 |
| | |||||
* | Fix unidiomatic-typecheck. | Claudiu Popa | 2015-05-07 | 1 | -1/+1 |
| | |||||
* | Remove unused variables. | Claudiu Popa | 2015-05-07 | 1 | -1/+1 |
| | |||||
* | Remove unused imports. | Claudiu Popa | 2015-05-07 | 1 | -1/+1 |
| | |||||
* | issue-422 solved some pylint warnings when running pylint on pylint code base | Simu Toni | 2015-03-28 | 1 | -1/+1 |
| | |||||
* | Use only one job for linting pylint. | Claudiu Popa | 2015-03-14 | 1 | -1/+1 |
| | |||||
* | Remove abstract-class-not-used, for the same reasons as star-args and ↵ | Claudiu Popa | 2015-03-11 | 1 | -1/+1 |
| | | | | abstract-class-little-referenced. | ||||
* | Remove abstract-class-little-used warning, since it doesn't add any real value. | Claudiu Popa | 2015-03-11 | 1 | -1/+1 |
| | |||||
* | remove more checks from disabled list, fix code to pass these: ↵ | Mihai Balint | 2015-02-28 | 1 | -1/+1 |
| | | | | C0303,C0304,C0321,C0325,C0326,C0327,C0328 | ||||
* | start removing checks from disabled list, fix code to make sure these pass: ↵ | Mihai Balint | 2015-02-28 | 1 | -2/+2 |
| | | | | C0102,C0112,C0121,C0202,C0203,C0204,C0301 | ||||
* | add all pylint codes to the disable list, runnint pylint pylint will now ↵ | Mihai Balint | 2015-02-28 | 1 | -2/+1 |
| | | | | rate the pylint code at 10.0 | ||||
* | add pylintrc generated by with pylint | Mihai Balint | 2015-02-28 | 1 | -0/+380 |