summaryrefslogtreecommitdiff
path: root/pylint/checkers/refactoring.py
Commit message (Expand)AuthorAgeFilesLines
* Move refactoring to a package in order to burst itPierre Sassoulas2020-09-051-1672/+0
* Add simplifiable-condition and condition-evals-to-constant to the refactoring...ethan-leba2020-08-311-1/+94
* Add bool() check for len-as-conditionethan-leba2020-08-311-21/+26
* Sets up copyrighthippo912020-08-201-0/+1
* Minor typo fix in R1721 help stringlrjball2020-07-041-1/+1
* Address the super violations in the codebaseClaudiu Popa2020-05-051-5/+8
* Rename the new old-style super with super-with-argumentsClaudiu Popa2020-05-051-0/+23
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-271-4/+17
* Fix false-negative cases for trailing-comma-tupleYang Yang2020-04-191-1/+1
* Refactor the dict.get detection code to be easier to understandClaudiu Popa2020-04-031-18/+41
* Pick a different name than slice to avoid overshadowing a builtinClaudiu Popa2020-03-271-5/+5
* Properly unwrap astroid.Index on Python 3.9+Claudiu Popa2020-03-271-4/+6
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-241-1/+0
* Protect against passing a non-class to _check_exception_inherit_from_stopiter...Claudiu Popa2020-03-081-1/+1
* Protect against `exc` not having `pytype`Claudiu Popa2020-03-081-1/+1
* ``consider-using-sys-exit`` is no longer emitted when `exit` is imported in t...Claudiu Popa2019-10-111-5/+12
* properly handle literals in ``unnecessary-comprehension`` checker, closes #3148Rémi Cardona2019-10-031-1/+3
* expand nested ternaries in ``unnecessary-comprehension`` to proper if statementsRémi Cardona2019-10-031-9/+6
* ``consider-using-sys-exit`` is exempted when `exit()` is imported from `sys`Claudiu Popa2019-09-301-1/+9
* Simplify and improve the logic of consider-iterating-dictionaryClaudiu Popa2019-09-241-4/+9
* Report unnecessary else after continue and breakRobert Schweizer2019-09-101-0/+32
* Added a new check, consider-using-sys-exit, close #2925 (#3062)Sushobhit2019-08-221-0/+11
* [pylint.checkers] Make the link between msgid and symbol strictly 1-1Pierre Sassoulas2019-08-191-2/+2
* blacken the codePHeanEX2019-07-161-17/+36
* Add new checker (unnecessary-comprehension) (close #2905)PHeanEX2019-07-161-0/+41
* Ignore ``consider-using-dict-comprehension`` for constructions that can't be ...Claudiu Popa2019-06-201-3/+10
* Style - Apply isort on all apllicable filesPierre Sassoulas2019-03-201-5/+2
* Make ``len-as-condition`` only fire when a ``len(x)`` call is made without an...Paul Renvoise2019-03-191-136/+76
* Kill some old names in favour of their corresponding check classClaudiu Popa2019-02-131-3/+3
* Generalize `chained-comparison` (#2655)Justin Li2018-12-211-39/+42
* Add ``no-else-raise`` warning (R1720) (#2636)Jim Robertson2018-12-111-6/+31
* Fix incorrect generation of ``no-else-raise`` warnings (R1705) (#2618)Jim Robertson2018-12-071-14/+4
* Adding implicit-str-concat-in-sequence check (#1655)Lucas Cimon2018-10-101-4/+4
* No enumerate check in __iter__ (#2505)Ben James2018-09-221-0/+4
* Added check simplifiable-if-expression (#2502)Tomer Chachamu2018-09-201-0/+34
* Reformat the code with blackClaudiu Popa2018-09-171-337/+481
* ``consider-using-ternary`` and ``simplified-boolean-expression`` no longer em...Claudiu Popa2018-09-051-15/+0
* ``simplifiable-if-statement`` not emitted when dealing with subscriptsClaudiu Popa2018-08-031-0/+2
* `trailing-comma-tuple` gets emitted for ``yield`` statements as well.Claudiu Popa2018-07-311-1/+3
* Get only the arguments of the scope function for `redefined-argument-from-local`Claudiu Popa2018-07-311-1/+2
* Change refactoring nodes_of_class call to use skip_klass (#2351)Nick Drozd2018-07-271-4/+2
* Don't crash when `pylint` is unable to infer the value of an argument to `nex...Claudiu Popa2018-07-191-1/+1
* Don't emit `useless-return` when we have a single statement that is the retur...Claudiu Popa2018-07-171-2/+1
* Include the type of the next branch in `no-else-return`Claudiu Popa2018-07-171-3/+7
* Update copyright noticesClaudiu Popa2018-07-151-4/+10
* Validate that the next() builtin is called when looking for stop-iteration-re...Claudiu Popa2018-07-151-0/+4
* `trailing-comma-tuple` can be emitted for `return` statements as well.Claudiu Popa2018-07-101-1/+1
* Infer the value of the truth_value before looking for consider-using-ternary ...Claudiu Popa2018-07-081-3/+10
* Do not emit consider-using-ternary when all the elements involved are a Compa...Claudiu Popa2018-07-081-0/+2
* Check Slice is type index (fix #2252)Konstantin Manna2018-07-051-0/+1