orSolocate

Results 10 issues of orSolocate

### Current problem I thought it would be nice to have a checker that detects magic numbers (aka. unnamed constants) in `Pylint`. As in all standard languages, `-1`, `0` and...

Enhancement ✨
checker-CodeStyle
Needs design proposal :lock:

### Current problem Comparing two different types using the `is` operator is always `False`. For example for this code: ``` A = 5 STR1 = ‘5’ if A is STR1:...

Proposal 📨
Discussion 🤔
Needs investigation 🔬
Needs decision :lock:
Needs PR

### Bug description Bug opened from [SO issue](https://stackoverflow.com/questions/46089480/pytest-fixtures-redefining-name-from-outer-scope-pylint) Testcase: ``` # test_wallet.py @pytest.fixture def my_wallet(): '''Returns a Wallet instance with a zero balance''' return Wallet() @pytest.mark.parametrize("earned,spent,expected", [ (30, 10, 20),...

Regression
Lib specific 💅

Hey would it be possible to add a feature to checker license header only for certain file extensions in the projects. The user could provide the extensions via a flag...

### Installed product versions Visual Studio 2015 14.0.25431.01 Update 3 Gitlab extension 1.0369 ### Description Is it possible to add a yaml validator like the one exists in the VScode...

### Current problem Parallel issue (being 'brought back from the grave') - #5722. when you use the reverse() method on a list object, it modifies (reverses) the list and returns...

Enhancement ✨
Needs PR

## Type of Changes | | Type | | --- | ---------------------- | | | :bug: Bug fix | | | :sparkles: New feature | | | :hammer: Refactoring |...

Skip news :mute:

### Current problem I was wondering about the ``singleton-comparison`` checker I worked on a bit a while ago. it suggests you to compare singleton using `is` instead of `==` which...

Enhancement ✨
Needs decision :lock:

### Current problem Probably an extension to the existing `not-an-iterable` error message. Looks pretty trivial, but could be very useful in cases we want to run `any` or `all` on...

Enhancement ✨
Needs specification :closed_lock_with_key:

### Bug description Based on[ SO question here](https://stackoverflow.com/questions/74467217/logic-behind-pylint-error-e1128-assignment-from-none). `assignment-from-none` is emitted where `func` does not necessarily returns `None` consider this `example.py` file to reproduce the error: ```python def get_func(param): if...

False Positive 🦟
Needs PR