summaryrefslogtreecommitdiff
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Extend the line length check.Torsten Marek2013-06-171-0/+2
|
* astng has been renamed astroidDavid Douard2013-06-171-8/+8
|
* regenerate generated documentationSylvain Thénault2013-04-161-47/+72
|
* add note about soon useless stream.seek()Sylvain Thénault2011-10-261-3/+1
|
* add regular expression support for generated-members (closes #69738)Alain Leufroy2011-07-081-2/+3
| | | | proposed: by Bruno Clermont
* py3k: need to handle guess_encoding in astngEmile Anclin2010-11-221-6/+8
| | | | | | | | | | Astng will try to find the right encoding and provide the right "stream" interface for the Pylint checkers. Reading a stream with the wrong encoding in py3k will generate a UnicodeError. The introduced a 'F0010' failure should maybe be replaced by E0501, E0502 and F0002? However, can we call 'unexpected errors' the ASTNGBuildingExceptions that we raise in logilab.astng.builder?
* doc : more update on optionsEmile Anclin2010-10-251-2/+2
|
* example: updated examples/pylintrc by using --generate-rcfileEmile Anclin2010-10-251-147/+79
|
* proper update of report identifiers to avoid collision with message in the ↵Sylvain Thénault2010-05-251-3/+3
| | | | Refactoring category
* update custom checker in example/custom.pyEmile Anclin2010-03-221-9/+7
| | | | We don't use compiler.ast nodes, but astng nodes.
* remove cache_size option: it was desactivated anywayEmile Anclin2010-03-221-3/+0
|
* include Dotan Barak spell fixes patchSylvain Thénault2009-11-231-8/+8
|
* several documentation changesEmile Anclin2008-09-151-69/+69
|
* makefile fixSylvain Thénault2008-02-071-3/+3
|