Skip to content

Update description of ignore-paths #5415

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ Release date: TBA
* Fixed a false positive for ``unused-import`` where everything
was not analyzed properly inside typing guards.

* Specified that the ``ignore-paths`` option considers "\" to represent a
windows directory delimiter instead of a regular expression escape
character.

..
Insert your changelog randomly, it will reduce merge conflicts
(Ie. not necessarily at the end)
Expand Down
4 changes: 3 additions & 1 deletion examples/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ ignore=CVS
ignore-patterns=

# Add files or directories matching the regex patterns to the ignore-list.
# The regex matches against paths.
# The regex matches against paths. NOTE: Because "\" represents the directory
# delimiter on Windows systems it can't be used as the escape character
# in these regular expressions.
ignore-paths=

# Python code to execute, usually for sys.path manipulation such as
Expand Down