diff options
| author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-07-28 20:18:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-28 20:18:44 +0200 |
| commit | a8b7dd7bffe343f00bcd6409534edcab530a4fc4 (patch) | |
| tree | 5f1d6b315ca95634a9328eed70603cfcfbac4e1c /pylint/checkers/spelling.py | |
| parent | c04f92ef68e5ea779a60bfddb91dc677c5470fd0 (diff) | |
| download | pylint-git-a8b7dd7bffe343f00bcd6409534edcab530a4fc4.tar.gz | |
Add unspecified-encoding checker #3826 (#4753)
* Add unspecified-encoding checker #3826
This adds an unspecified-encoding checker that adds a warning
whenever open() is called without an explicit encoding argument.
This closes #3826
* Update tests to conform to unspecified-encoding
With addition of the unspecified-encoding checker calls of open()
need an encoding argument.
Where necessary this argument has been added, or the message has been
disabled.
This also includes small linting changes to a small number
of tests. Their test-data has been updated to reflect new line numbers.
* Update scripts to conform to unspecified-encoding
With addition of the unspecified-encoding checker calls of open()
need an encoding argument.
Where necessary this argument has been added.
* Update pylint to conform to unspecified-encoding
With addition of the unspecified-encoding checker calls of open()
need an encoding argument.
Where necessary this argument has been added.
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Diffstat (limited to 'pylint/checkers/spelling.py')
| -rw-r--r-- | pylint/checkers/spelling.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/spelling.py b/pylint/checkers/spelling.py index e2b6df189..1b0a7f653 100644 --- a/pylint/checkers/spelling.py +++ b/pylint/checkers/spelling.py @@ -318,7 +318,7 @@ class SpellingChecker(BaseTokenChecker): dict_name, self.config.spelling_private_dict_file ) self.private_dict_file = open( # pylint: disable=consider-using-with - self.config.spelling_private_dict_file, "a" + self.config.spelling_private_dict_file, "a", encoding="utf-8" ) else: self.spelling_dict = enchant.Dict(dict_name) |
