summaryrefslogtreecommitdiff
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* Update ``pydocstringformatter`` to 0.4.0 (#5787)Daniël van Noord2022-02-101-2/+2
|
* Add ``future=True`` to all ``NodeNG.frame`` calls (#5621)Daniël van Noord2022-01-101-1/+1
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Format docstrings with ``pydocstringformatter``Daniël van Noord2022-01-022-3/+3
|
* Fix #2399: Avoid negative scores by default (#5595)Jacob Walls2021-12-281-1/+1
|
* Add typing and uniformize the checker registering in Pylinter (#5558)Pierre Sassoulas2021-12-273-13/+23
| | | | | Remove verbose docstring in code, keep them in example and doc Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
* Fix some typoes before adding typing for checker registeringPierre Sassoulas2021-12-201-7/+3
|
* Fix typos over the whole codebase (#5540)Kian Meng, Ang2021-12-171-1/+1
| | | Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
* Produce a score of 0 for fatal errors and add fatal to score evaluation (#5521)Jacob Walls2021-12-141-2/+2
| | | Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
* Update description of ``ignore-paths`` (#5415)Daniël van Noord2021-11-281-1/+3
|
* Type ``process_module`` and update argument namesDaniël van Noord2021-09-131-1/+3
|
* Remove the python3 porting mode from the codebasePierre Sassoulas2021-09-011-72/+1
| | | | | | It's possible to use the python3 porting checker from an older pylint version. But it's not evolving anymore and was costing resource to maintain.
* Use alias for astroid.nodes 01 (#4855)Marc Mueller2021-08-171-6/+5
| | | | * Use from astroid import nodes * Resolve name conflicts
* Issue #4541: add ``ignore-paths`` option to example pylintrc file.DudeNr332021-06-291-0/+4
|
* Add extension-pkg-allow-list optionPeter Kolbus2021-03-091-0/+6
| | | | | Add an option extension-pkg-allow-list to the main checker. This is an alternate name for extension-pkg-whitelist.
* Reduce 'blacklist' term for ignored filesPeter Kolbus2021-03-091-4/+3
| | | | | | | Replace usage of the term 'blacklist' in the context of ignored files and directories (--ignore and --ignore-patterns), except in cases where backward compatibility is needed. In documentation and help, supplement 'ignore' with 'skip'; in code use the term 'ignore list'.
* Typing changes + disable unused pylint plugin for pre-commit (#4205)Marc Mueller2021-03-071-3/+5
|
* Add typing that were lacking following refactorPierre Sassoulas2021-03-071-3/+3
| | | | See : 6721cd1cf2da0294124b75d382a042e23ec27d47
* Introduced deprecated attributesMatus Valo2021-03-061-23/+39
|
* DeprecatedMixin: Fix typos and order of base classes in testMatus Valo2021-02-211-2/+2
|
* Move message definition to the DeprecatedMixin classMatus Valo2021-02-211-14/+6
|
* Added example of deprecation checkerMatus Valo2021-02-211-0/+89
|
* remove invalid fstr setting (#3682)Thomas Grainger2020-06-161-1/+1
|
* Fix trailing whitespaces and trailing newlinesPierre Sassoulas2020-05-031-2/+0
|
* Refresh the docs a bit in preparation for the releaseClaudiu Popa2020-03-131-64/+76
|
* Add notes-rgx option for fixme checker (#3394)Benny2020-02-131-0/+2
| | | | | | | This commit adds a new `notes-rgx` which is used by the "fixme" check for more granular control over the what fixme messages to emit. Co-authored-by: Claudiu Popa <pcmanticore@gmail.com>
* update examples/pylintrc with new logging-format-style help (#3360)John Belmonte2020-01-261-1/+1
| | | follow-up to #3095
* Adds a new check 'inconsistent-quotes'.Wes Turner2020-01-051-0/+4
| | | | | | | | | | | | | | Quoting PEP-8: In Python, single-quoted strings and double-quoted strings are the same. This PEP does not make a recommendation for this. Pick a rule and stick to it. When a string contains single or double quote characters, however, use the other one to avoid backslashes in the string. It improves readability. For triple-quoted strings, always use double quote characters to be consistent with the docstring convention in PEP 257. Features: Accounts for strings where the delimiter is swapped so an internal quote doesn't need to be escaped Only errors on those lines that represent the module's minority delimiter. Ignores longstrings (they could be docstrings, and checking those delimiters is someone else's responsibility)
* Improve help for options (#2986)Peter Kolbus2019-07-091-224/+250
|
* Fix - add `__post_init__` into `defining-attr-methods` to avoid ↵Andrzej Klajnert2019-07-051-1/+2
| | | | `attribute-defined-outside-init` in dataclasses.
* Style - Re-Apply black following the isort cleanupPierre Sassoulas2019-03-202-23/+31
| | | | Change with isort triggered change with black.
* Style - Apply isort on all apllicable filesPierre Sassoulas2019-03-202-3/+3
|
* Add reference to R0916 to max-bool-exprMichael Scott Cuthbert2019-03-191-1/+1
|
* Grammar fixes to docs (#2492)Drew2018-09-151-1/+1
| | | Fix grammar error in pylintrc files and CONTRIBUTORS.txt.
* The ``locally-enabled`` check is gone.Claudiu Popa2018-08-241-1/+0
| | | | Close #2442
* Removed double space from pylintrc exampleMarcus Näslund2018-08-081-1/+1
|
* Regenerate example pylintrc and man pageVille Skyttä2018-06-131-197/+368
|
* Expanded documentation for new contributors (#1569)Ashley Whetter2017-07-121-13/+43
|
* Remove mentions of deprecated astroid node names (#1485)Łukasz Rogalski2017-05-221-3/+3
|
* Fix err "global name 'module' is not defined" (#1146)sdet_liang2016-10-251-1/+1
| | | | | | | Fix following error when using this plugin ``` with module.stream() as stream: NameError: global name 'module' is not defined ```
* Add a message in the example checker, since the message is needed.Claudiu Popa2016-08-141-1/+5
|
* Added threading.local to ignored classes default list (#946)Jürgen Hermann2016-06-241-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.
* error E0201 is obsolete - now E1101Anentropic2015-11-181-1/+1
| | | | | --HG-- branch : remove-E0201-references
* Various changes related to docsMichal Nowikowski2015-02-271-2/+11
| | | | | | | | | | | - added Changelog to docs - added list of contributors to docs - updated CONTRIBUTORS info - slight formating changes in Changelog - updated auto-generated man page and example pylintrc --HG-- branch : docs-improvements2
* Backed out changeset 406c23c24795Michal Nowikowski2015-02-281-11/+2
|
* Various changes related to docsMichal Nowikowski2015-02-271-2/+11
| | | | | | | | - added Changelog to docs - added list of contributors to docs - updated CONTRIBUTORS info - slight formating changes in Changelog - updated auto-generated man page and example pylintrc
* Update the examples to the new message format.Claudiu Popa2015-01-031-1/+3
|
* Use the new Module.stream, since Module.file_stream is deprecated.Claudiu Popa2015-01-031-4/+5
|
* Documentation improvementsMichal Nowikowski2014-11-041-68/+103
| | | | | | | | | | | - added intros to features page, - fixed PyLint to Pylint in text, - improved ide-integration doc page, - updated pylintrc in examples and - regenerated pylint manual --HG-- branch : docs-improvements-2
* regenerated example pylintrc and man page (though they should be removed ↵Sylvain Thénault2014-07-251-1/+4
| | | | from the repo at some point)
* regenerate doc/example/manSylvain Thénault2014-04-181-33/+100
|