summaryrefslogtreecommitdiff
path: root/pylint/checkers/modified_iterating_checker.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix crash when deleting from a dict returned from a call (#8678)Jacob Walls2023-05-121-5/+1
|
* [PyCQA migration] Upgrade links to the repositories in code and doc (#8514)Pierre Sassoulas2023-03-291-2/+2
|
* Fix crash in ``modified_iterating`` checker for set defined as a class ↵Dani Alcala2022-09-301-2/+7
| | | | | | attribute (#7541) Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Fix a crash in the `modified-iterating-dict` checker involving instance ↵Jacob Walls2022-09-161-4/+8
| | | | attributes (#7472)
* Turn on ``mypy`` strict mode 🎉 (#7448)Daniël van Noord2022-09-091-2/+2
| | | | | | | | | | * Ignore subclasses of Any * Add ignores for imported code and remove casts * Add disables for uninferable return values * Turn on ``mypy`` strict mode
* Fix crash while iteraring over a class attribute (#7386)Daniël van Noord2022-08-311-2/+6
| | | Co-authored-by: orSolocate <38433858+orSolocate@users.noreply.github.com>
* Don't emit `modified-iterating-dict` when updating existing keys (#7037)Jacob Walls2022-06-251-0/+9
|
* Emit modified-iterating-list|dict|set for literals or usage of `del` (#6652)Jacob Walls2022-06-041-4/+31
|
* Migrate from 'check_messages' to 'only_required_for_messages' (#6417)Pierre Sassoulas2022-04-211-1/+1
|
* Remove ``IAstroidChecker`` from ``__implements__``Daniël van Noord2022-04-191-2/+0
|
* Use ``python-typing-update`` on ``pylint/checkers`` directoryDaniël van Noord2022-04-141-3/+5
|
* Remove the concept of checker priority (#6034)Daniël van Noord2022-04-011-1/+0
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Fix issue #5969 for `modified_iterating-list` (#5986)orSolocate2022-03-261-2/+3
| | | | | When the list/dict/set being iterated through is a function call. Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Add a pre-commit hook to check the copyright noticePierre Sassoulas2022-03-241-1/+1
| | | | | Fix the existing file so they have a notice. No header for setup.py or examples or doc
* Simplify hard to maintain copyright noticePierre Sassoulas2022-03-241-0/+1
| | | | | | git is the source of truth for the copyright, copyrite (the tool) was taking exponentially longer with each release, and it's polluting the code with sometime as much as 50 lines of names.
* Add `iterating-modified-list` checker for modified lists (#5628)orSolocate2022-02-011-0/+154