Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [doc] Apply black on the documentation where it makes sense (#8650) | Pierre Sassoulas | 2023-05-02 | 8 | -8/+9 |
| | | | Co-authored-by: Daniel van Noord <13665637+DanielNoord@users.noreply.github.com> | ||||
* | [doc] Add an example for 'non-ascii-file-name' (#8340) | Pierre Sassoulas | 2023-02-25 | 7 | -2/+5 |
| | | | | | And move links to related.rst Co-authored-by: Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com> | ||||
* | [doc] Make sure that doc examples are of a reasonable length (#8135) | Pierre Sassoulas | 2023-01-30 | 2 | -2/+2 |
| | | | | And upgrade existing unreasonable length. Reading ease is drastically reduced on read the doc after 103 chars (Because of horizontal scrolling) | ||||
* | [no-member doc] Add generated-members documentation (#7949) | Pierre Sassoulas | 2022-12-15 | 1 | -2/+10 |
| | | | Closes #7944 | ||||
* | Add extension checker for nested min/max (#7550) | Osher De Paz | 2022-11-21 | 2 | -0/+2 |
| | | | | | | | | | | | | This adds a new checker (not active by default) which identifies usages similar to ``min(<arg1>, min(<arg2>, <arg3>))`` and suggests using a simplified form of ``min(<arg1>, <arg2>, <arg3>)``. Same goes for ``max`` usage. The logic is as follows: it detects calls to either ``min`` or ``max`` functions, and whenever one of their arguments is that same function, it emits the message. Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> | ||||
* | Add named-expr-without-context check (#7763) | Marc Mueller | 2022-11-14 | 2 | -0/+3 |
| | |||||
* | Add doc example for various messages (#7684) | Dani Alcala | 2022-10-27 | 9 | -6/+28 |
| | | | | | | | | | | | | | * add docs for non-str-assignment * add docs for nonlocal * add docs for not-a-mapping * add docs for possibly unused var * add docs for preferred module * add docs for redundant return doc | ||||
* | Add docs for non-* and other messages (#7672) | Dani Alcala | 2022-10-26 | 12 | -8/+39 |
| | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Add documentation examples for `nonexistent-operator` (#7048) | Julthep Nandakwang | 2022-07-07 | 3 | -2/+10 |
| | | | | Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com> Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> | ||||
* | Add documentation examples for `not-context-manager` (#7051) | Julthep Nandakwang | 2022-06-25 | 3 | -2/+17 |
| | | | | Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Add documentation examples for `notimplemented-raised` (#7052) | Julthep Nandakwang | 2022-06-25 | 3 | -2/+6 |
| | | | Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com> | ||||
* | Add documentation examples for `not-async-context-manager` (#7049) | Julthep Nandakwang | 2022-06-25 | 3 | -2/+23 |
| | | | Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com> | ||||
* | Add documentation examples for `non-parent-init-called` (#7047) | Julthep Nandakwang | 2022-06-25 | 3 | -2/+30 |
| | | | | Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Add documentation examples for `non-iterator-returned` (#7046) | Julthep Nandakwang | 2022-06-25 | 3 | -2/+43 |
| | | | | | Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Add documentation examples for `no-value-for-parameter` (#7045) | Julthep Nandakwang | 2022-06-25 | 3 | -2/+8 |
| | | | Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com> | ||||
* | Add documentation examples for `no-staticmethod-decorator` (#7044) | Julthep Nandakwang | 2022-06-25 | 3 | -2/+9 |
| | | | Co-authored-by: Vladyslav Krylasov <vladyslav.krylasov@gmail.com> | ||||
* | Added documentation examples for `nonlocal-and-global`. (#6880) | Mark Byrne | 2022-06-22 | 3 | -2/+21 |
| | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Add no-self-argument example (#6862) | Harutaka Kawamura | 2022-06-05 | 3 | -2/+6 |
| | |||||
* | Added documentation examples for `no-self-use`. (#6760) | Mark Byrne | 2022-05-31 | 4 | -2/+27 |
| | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Added documentation examples for `not-in-loop`. (#6742) | Mark Byrne | 2022-05-29 | 3 | -2/+11 |
| | |||||
* | Added documentation examples for `no-method-argument`. (#6741) | Mark Byrne | 2022-05-29 | 3 | -2/+6 |
| | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Added documentation examples for `no-name-in-module`. (#6740) | Mark Byrne | 2022-05-29 | 3 | -2/+2 |
| | |||||
* | Added documentation examples for `not-callable`. (#6743) | Mark Byrne | 2022-05-29 | 3 | -2/+4 |
| | |||||
* | Adding documentation examples for `not-an-iterable`. (#6717) | Mark Byrne | 2022-05-27 | 3 | -2/+4 |
| | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Generate the data message directories with an advert for potential ↵ | Pierre Sassoulas | 2022-05-26 | 48 | -0/+48 |
| | | | | contributors (#6702) | ||||
* | [doc] Normalize formatting for pylint and its option | Pierre Sassoulas | 2022-05-23 | 1 | -9/+9 |
| | | | | Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> | ||||
* | [doc] Add example understandable without knowing pathlib.Path | Pierre Sassoulas | 2022-05-23 | 2 | -0/+16 |
| | |||||
* | [doc] Move the c-extensions documentation to no-member doc | Pierre Sassoulas | 2022-05-23 | 3 | -0/+35 |
| | |||||
* | Added no-else-break message example (#6262) | Matus Valo | 2022-04-12 | 2 | -0/+11 |
| | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Added no-else-continue message example (#6263) | Matus Valo | 2022-04-12 | 2 | -0/+11 |
| | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> | ||||
* | Added no-else-return message example (#6265) | Matus Valo | 2022-04-11 | 2 | -0/+13 |
| | |||||
* | Added no-else-raise message example (#6264) | Matus Valo | 2022-04-11 | 2 | -0/+9 |