summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Added notes on integration with TextMateDaniele Procida2015-10-251-5/+63
|
* Fix documentation build warnings and errorsDmitry Pribysh2015-10-221-1/+1
| | | | | | | | Errors fixed: - unqouted emphasis character usage (*) - missing list index Fixes #481.
* Add ChangeLog entry, new test and documentation for searching .pylintrc in ↵Claudiu Popa2015-06-011-0/+1
| | | | the current folder.
* Don't redirect users to pylint-messages.wikidot.com. Closes issue #539.Claudiu Popa2015-05-192-7/+0
|
* accept-no-param-doc turned into a yes/no option; documentation for this ↵Bruno Daniel2015-05-101-0/+4
| | | | parameter
* pylint documentation: Demonstrate parameter documentation checking for ↵Bruno Daniel2015-05-101-10/+76
| | | | Google and Numpy style as well.
* mergeBruno Daniel2015-05-082-0/+77
|\
| * Merged logilab/pylint into defaultbdanielby2014-08-272-0/+77
| |\
| | * Merged logilab/pylint into defaultbdanielby2014-08-152-0/+77
| | |\
| | | * rst documentation file for the extensions module; extensive documentation forBruno Daniel2014-08-081-0/+76
| | | | | | | | | | | | | | | | the new checker extensions.check_docs
| | | * rst documentation file for the extensions module; extensive documentation forBruno Daniel2014-08-081-0/+1
| | | | | | | | | | | | | | | | the new checker extensions.check_docs
* | | | Remove entries regarding interfaces from the documentation.Claudiu Popa2015-05-061-15/+2
| | | |
* | | | Revert unwanted change.Claudiu Popa2015-03-201-1/+1
| | | |
* | | | Added a new option for controlling the peephole optimizer in astroid.Claudiu Popa2015-03-141-2/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The option ``--optimize-ast`` will control the peephole optimizer, which is used to optimize a couple of AST subtrees. The current problem solved by the peephole optimizer is when multiple joined strings, with the addition operator, are encountered. If the numbers of such strings is high enough, Pylint will then fail with a maximum recursion depth exceeded error, due to its visitor architecture. The peephole just transforms such calls, if it can, into the final resulting string and this exhibit a problem, because the visit_binop method stops being called (in the optimized AST it will be a Const node).
* | | | Fix a couple of doc warnings, use string continuation.Claudiu Popa2015-03-021-1/+1
| | | |
* | | | Make the doc buildable using the current checkoutSandro Tosi2015-03-011-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Passing the PYTHONPATH from the command line, and setting PATH to the built script, this change will make it possible to use the built code used instead of the system-wide installation to build the documentation. Usage example: PATH=./build/scripts-2.7:$PATH make -C doc html PYTHONPATH=./build/lib
* | | | Various changes related to docsMichal Nowikowski2015-02-272-0/+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
* | | | Backed out changeset 406c23c24795Michal Nowikowski2015-02-282-11/+0
| | | |
* | | | Various changes related to docsMichal Nowikowski2015-02-272-0/+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
* | | | The HTML output accepts the `--msg-template` option.Claudiu Popa2015-02-1713-99/+325
|\ \ \ \ | | | | | | | | | | | | | | | Patch by Daniel Goldsmith. Closes issue #135.
| * | | | [doc] sync with elisp/pylint-flymake.elYoichi Nakayama2015-02-111-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | * don't append path of init file to the program name * don't use additional variable for the program name
| * | | | Drop a misleading line from documentation. Closes issue #337.Claudiu Popa2015-01-251-1/+0
| | | | |
| * | | | Add a Windows .bat file for building the documentation on Windows.Claudiu Popa2015-01-121-0/+190
| | | | |
| * | | | Fix the documentation for the --ignore option. Closes issue #405.Claudiu Popa2015-01-121-2/+3
| | | | |
| * | | | FAQ typo fix ("minimum" vs "maximum")fahhem/faq-typo-fix-minimum-vs-maximum-1418754998842fahhem2014-12-161-1/+1
| | | | |
| * | | | Add a note regarding the support of <=Python 2.6.Claudiu Popa2014-12-152-2/+14
| | | | | | | | | | | | | | | | | | | | Closes issue #390.
| * | | | Fix the order of the commands for the release.Claudiu Popa2014-11-221-1/+1
| | | | |
| * | | | Cleanup through documentation.Claudiu Popa2014-11-125-23/+28
| | | | |
| * | | | Remove psyco section from documentation, it's not a relevant project anymore.Claudiu Popa2014-11-121-24/+0
| | | | |
| * | | | Merged in godfryd/pylint/docs-improvements-2 (pull request #197)Claudiu Popa2014-11-072-24/+22
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Documentation improvements
| | * | | | Documentation improvementsdocs-improvements-2Michal Nowikowski2014-11-042-24/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - added intros to features page, - fixed PyLint to Pylint in text, - improved ide-integration doc page, - updated pylintrc in examples and - regenerated pylint manual
| * | | | | Fixed "standart" typosJakob Normark2014-11-061-1/+1
| |/ / / /
| * | | | Add new '-j' option for running checks in sub-processes.Claudiu Popa2014-10-152-4/+25
| | | | | | | | | | | | | | | | | | | | Patch by Michal Nowikowski.
| * | | | Add a short document outlining the release process.Claudiu Popa2014-09-301-0/+23
| | | | |
| * | | | Add the missing hash sign.cpopa2014-09-221-1/+1
| |/ / /
| * | | Change the multi-style name checker from first-style-wins to ↵Torsten Marek2014-07-241-6/+7
| |/ / | | | | | | | | | majority-style-wins.
| * | tiny typo fixMarco Forte2014-08-141-1/+1
| | |
| * | Updated bullet points in Notes for Windows users to follow ↵Marco Forte2014-08-141-4/+3
| |/ | | | | | | http://www.oxforddictionaries.com/words/bullet-points , I updated them since they are full sentences and so generally start with a capital. Tiny fix :)
| * Document the fact that Pylint does not import modules. Closes issue #249.cpopa2014-05-201-3/+5
| |
| * ensure doc has the correct versionSylvain Th?nault2014-04-221-2/+2
| |
| * [doc]?use symbolic name in message control examlple. Closes #27Sylvain Th?nault2014-04-221-11/+11
| |
* | Merge with trunkDan Goldsmith2014-04-115-21/+284
|\ \ | |/
| * Additionaly search for rc file in ~/.config/pylintrc. Closes #121Sylvain Th?nault2014-04-111-3/+6
| |
| * [doc] use symbolic names in faqSylvain Th?nault2014-04-111-13/+15
| |
| * don't promote inline comment in rc fileSylvain Th?nault2014-04-111-3/+4
| | | | | | | | | | | | | | their situation w/ ConfigParser is somewhat fuzzy, and we don't want to promote them in pylintrc, so simply show whole line comments. Closes #150
| * Make it possible to show a naming hint for invalid name by setting ↵Torsten Marek2014-03-301-0/+11
| | | | | | | | include-naming-hint. Also make the naming hints configurable.
| * Added support for enforcing multiple, but consistent name styles for ↵Torsten Marek2014-04-092-0/+129
| | | | | | | | different name types inside a single module.
| * Initial draft of plugin how-to.amdev2014-02-272-6/+123
| |
* | Updated output documents with default html outputDan Goldsmith2014-01-291-0/+3
|/
* [doc] update versionDavid Douard2014-01-101-3/+3
|