Skip to content

Commit

Permalink
Showing 7 changed files with 198 additions and 197 deletions.
4 changes: 2 additions & 2 deletions doc/user_guide/checkers/features.rst
Original file line number Diff line number Diff line change
@@ -1323,8 +1323,8 @@ Verbatim name of the checker is ``spelling``.
Spelling checker Options
^^^^^^^^^^^^^^^^^^^^^^^^
:spelling-dict:
Spelling dictionary name. Available dictionaries: en_GB (aspell), en_US
(hunspell), en_AU (aspell), en (aspell), en_CA (aspell).
Spelling dictionary name. Available dictionaries: none. To make it work,
install the 'python-enchant' package.
:spelling-ignore-words:
List of comma separated words that should not be checked.
:spelling-private-dict-file:
6 changes: 3 additions & 3 deletions doc/user_guide/configuration/all-options.rst
Original file line number Diff line number Diff line change
@@ -228,7 +228,7 @@ Description:
*Minimum Python version to use for version dependent checks. Will default to the version used to run pylint.*

Default:
``(3, 8)``
``(3, 10)``


--recursive
@@ -334,7 +334,7 @@ Default:
persistent = true
py-version = [3, 8]
py-version = [3, 10]
recursive = false
@@ -1517,7 +1517,7 @@ Default:
"""""""""""""""

Description:
*Spelling dictionary name. Available dictionaries: en_GB (aspell), en_US (hunspell), en_AU (aspell), en (aspell), en_CA (aspell).*
*Spelling dictionary name. Available dictionaries: none. To make it work, install the 'python-enchant' package.*

Default:
``""``
3 changes: 2 additions & 1 deletion doc/whatsnew/2/2.14/full.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Full changelog
==============


What's New in Pylint 2.14.5?
----------------------------
Release date: TBA
Release date: 2022-07-17


* Fixed a crash in the ``undefined-loop-variable`` check when ``enumerate()`` is used
372 changes: 186 additions & 186 deletions examples/pylintrc

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions examples/pyproject.toml
Original file line number Diff line number Diff line change
@@ -71,7 +71,7 @@ persistent = true

# Minimum Python version to use for version dependent checks. Will default to the
# version used to run pylint.
py-version = "3.8"
py-version = "3.10"

# Discover python modules and packages in the file system subtree.
# recursive =
@@ -412,8 +412,8 @@ min-similarity-lines = 4
# Limits count of emitted suggestions for spelling mistakes.
max-spelling-suggestions = 4

# Spelling dictionary name. Available dictionaries: en_GB (aspell), en_US
# (hunspell), en_AU (aspell), en (aspell), en_CA (aspell).
# Spelling dictionary name. Available dictionaries: en (aspell), en_AU (aspell),
# en_CA (aspell), en_GB (aspell), en_US (aspell).
# spelling-dict =

# List of comma separated words that should be considered directives if they
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "2.14.4"
__version__ = "2.14.5"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"

[version]
current = "2.14.4"
current = "2.14.5"
regex = '''
^(?P<major>0|[1-9]\d*)
\.

0 comments on commit 566ffca

Please sign in to comment.