Commit Graph

56 Commits

Author SHA1 Message Date
Damien Baty
9bc9bdf533 Support both isort 4 and isort 5
The API of isort 5 (released on 2020-07-04) is completely different.
We must still support isort 4 because isort 5 dropped the
compatibility with Python 3.5, which pylint still supports.

Note about the `known-standard-library` option: it has been included
in pylint for years. Until now, it was mapped with the option of the
same name in isort. However, isort 5 has changed the meaning of this
option (see https://timothycrosley.github.io/isort/docs/upgrade_guides/5.0.0/#known_standard_library).

Most users of pylint want the meaning of the new
`extra-standard-library` option. To avoid a breaking change in pylint,
the `known-standard-library` pylint option is now mapped to
`known-standard-library` in isort 4, and `extra-standard-library` in
isort 5. Users that really want the _new_ meaning of
`known-standard-library` in isort 4 must disable the
`wrong-import-order` check in pylint and run isort manually, outside
of pylint.

Fix #3722.
2020-08-18 09:12:33 +02:00
谭九鼎
201daa6f77
Chore: use https links (#3679) 2020-06-11 08:25:03 +02:00
Pierre Sassoulas
3fffdf03d5 Fix trailing whitespaces and trailing newlines 2020-05-03 18:24:25 +02:00
Claudiu Popa
bd85d3b70d Refresh the docs a bit in preparation for the release 2020-03-13 12:20:02 +01:00
Benny
8956979db8
Add notes-rgx option for fixme checker (#3394)
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>
2020-02-13 09:30:43 +01:00
Peter Kolbus
af45f55d86 Improve help for options (#2986) 2019-07-09 09:48:06 +03:00
Marcus Näslund
452b560e18 Removed double space from man page 2018-08-08 00:44:34 -06:00
Ville Skyttä
6e2c366ff8 Regenerate example pylintrc and man page 2018-06-13 09:12:41 +02:00
Ville Skyttä
740906eeac Document jobs=0 behavior in help message and man page 2018-06-12 09:50:37 +02:00
Claudiu Popa
9acb65af4c Remove the gui references from the man 2018-05-11 21:31:02 -04:00
Claudiu Popa
ff33b83c2a
Remove pylint.gui man page. Closes #1760 2017-12-11 09:42:12 +01:00
Jakub Wilk
c500705bca Fix typos (#978) 2016-07-05 13:40:48 +01:00
Jürgen Hermann
1fa9a57361 Added threading.local to ignored classes default list (#946)
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.
2016-06-24 14:11:53 +01:00
Jakub Wilk
6116d7d621 Fix mailto URIs (#913)
As per RFC 6068, there should be no slashes after "mailto:".
2016-05-24 14:00:23 +01:00
Alexander Pervakov
789e8de06c Update docs for --ignore option 2016-04-24 01:09:37 +03:00
Jakub Wilk
caf4dca598 Fix typo in the symilar manpage 2016-03-20 14:05:06 +01:00
Claudiu Popa
47842f3091 Escape the tab, so it can be rendered properly. Close #764 2016-01-03 17:39:51 +02:00
Anentropic
5b9a8c2018 error E0201 is obsolete - now E1101
--HG--
branch : remove-E0201-references
2015-11-18 12:07:22 +00:00
Claudiu Popa
337669aa10 Remove the -i option for pyreverse from the man page, since it's actually --ignore. 2015-07-30 21:38:08 +03:00
Michal Nowikowski
c0d3f6964a Various changes related to docs
- 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
2015-02-27 06:48:24 +01:00
Michal Nowikowski
59bf1e35e1 Backed out changeset 406c23c24795 2015-02-28 06:17:17 +01:00
Michal Nowikowski
fe9dbd9f35 Various changes related to docs
- 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
2015-02-27 06:48:24 +01:00
Michal Nowikowski
5f5fd075db Documentation improvements
- 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
2014-11-04 08:08:19 +01:00
Sylvain Thénault
f73e3ee238 regenerated example pylintrc and man page (though they should be removed from the repo at some point) 2014-07-25 17:27:29 +02:00
Sylvain Thénault
97a1d428cb regenerate doc/example/man 2014-04-18 15:30:12 +02:00
Sylvain Thénault
6ea312b671 regenerate pylint's man page. Closes #137 2014-04-11 15:57:38 +02:00
Paul Cochrane
9744f157e4 [man] corrected minor typos and grammatical errors in pyreverse man page 2013-11-28 14:57:45 +01:00
Sylvain Thénault
cbae7f3f2d regenerate generated documentation 2013-04-16 12:11:35 +02:00
Julien Cristau
b2ee43cdb9 Fix --ignore option documentation to match reality (closes #22273)
The option can only be passed once, but it takes a list of file names.
2011-07-08 16:14:20 +02:00
Emile Anclin
85f4f8a3f8 doc: add manpages, update documentation about the project
mention and document a bit epylint, pylint-gui and symilar
gui.py : fix line length
debian/control: Suggests instead of Recommends python-tk
2010-12-15 19:14:21 +01:00
Emile Anclin
94756c3a3f add manpage for symilar 2010-12-15 18:38:12 +01:00
Emile Anclin
3ff282ffef update documentation and manpage 2010-11-15 17:53:01 +01:00
Emile Anclin
2554a84f49 doc : more update on options 2010-10-25 16:15:36 +02:00
Emile Anclin
06a3ddb16d help / man: more explicit on dummy variable regex 2010-10-25 14:46:05 +02:00
Sylvain Thénault
763f484095 update man page for 0.21 usage, closes debian #582494 2010-05-25 10:05:55 +02:00
Emile Anclin
e92224761a apply Sandro Tosi patch for pyreverse man page 2010-03-29 11:27:19 +02:00
Emile Anclin
be5996b93d remove cache_size option: it was desactivated anyway 2010-03-22 09:34:40 +01:00
Sylvain Thénault
8746b95b65 include Dotan Barak spell fixes patch 2009-11-23 15:15:26 +01:00
Emile Anclin
5bf13145a4 remove a lot of more rpython stuff
--HG--
branch : astng2
2009-03-16 11:48:03 +01:00
Emile Anclin
fa06d64098 merge 2008-10-27 12:50:00 +01:00
Nicolas Chauvat
8d4ff0290a fix man page 2008-10-21 19:21:49 +02:00
Emile Anclin
afa5d58db1 use new generated doc and man 2008-10-13 16:43:58 +02:00
Emile Anclin
aca85ac973 fix #4910: default values are missing in manpage 2008-09-15 14:10:17 +02:00
Emile Anclin
349a72f097 merge pyreverse into pylint 2008-09-08 17:07:36 +02:00
Emile Anclin
dc2c80d0e7 adapt pyreverse for inclusion into pylint 2008-09-08 17:03:54 +02:00
Emile Anclin
4dfae9da4e add examples to manpage 2008-09-03 15:55:43 +02:00
Emile Anclin
11381be33e rebuild ancestor and associated options 2008-08-26 16:36:44 +02:00
Emile Anclin
ca49a4413d update manpage for pyreverse 2008-08-25 10:55:04 +02:00
Emile Anclin
c4afd74571 manpage; add command line shortcuts 2008-08-18 19:12:15 +02:00
Emile Anclin
e2b541e7fd first pyreverse manpage sketch 2008-08-18 18:34:27 +02:00