Skip to content
Merged
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
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,11 @@ lint.pydocstyle.convention = "google"
[tool.pylint]
# Allow the body of an if to be on the same line as the test if there is no
# else.
"FORMAT".single-line-if-stmt = false
FORMAT.single-line-if-stmt = false
# Pickle collected data for later comparisons.
"MASTER".persistent = true
MASTER.persistent = true
# Use multiple processes to speed up Pylint.
"MASTER".jobs = 0
MASTER.jobs = 0
# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
# See https://chezsoi.org/lucas/blog/pylint-strict-base-configuration.html.
Expand All @@ -206,7 +206,7 @@ lint.pydocstyle.convention = "google"
# - pylint.extensions.magic_value
# - pylint.extensions.while_used
# as they seemed to get in the way.
"MASTER".load-plugins = [
MASTER.load-plugins = [
"pylint_per_file_ignores",
"pylint.extensions.bad_builtin",
"pylint.extensions.comparison_placement",
Expand All @@ -227,7 +227,7 @@ lint.pydocstyle.convention = "google"
# We ignore invalid names because:
# - We want to use generated module names, which may not be valid, but are never seen.
# - We want to use global variables in documentation, which may not be uppercase
"MASTER".per-file-ignores = [
MASTER.per-file-ignores = [
"docs/source/conf.py:invalid-name",
"docs/source/doccmd_*.py:invalid-name",
"doccmd_README_rst_*.py:invalid-name",
Expand Down Expand Up @@ -277,12 +277,12 @@ lint.pydocstyle.convention = "google"
]
# Spelling dictionary name. Available dictionaries: none. To make it working
# install python-enchant package.
"SPELLING".spelling-dict = "en_US"
SPELLING.spelling-dict = "en_US"
# A path to a file that contains private dictionary; one word per line.
"SPELLING".spelling-private-dict-file = "spelling_private_dict.txt"
SPELLING.spelling-private-dict-file = "spelling_private_dict.txt"
# Tells whether to store unknown words to indicated private dictionary in
# --spelling-private-dict-file option instead of raising a message.
"SPELLING".spelling-store-unknown-words = "no"
SPELLING.spelling-store-unknown-words = "no"

[tool.check-manifest]
ignore = [
Expand Down