@@ -55,7 +55,7 @@ optional-dependencies.dev = [
5555 " pygments==2.19.2" ,
5656 " pylint[spelling]==4.0.5" ,
5757 " pylint-per-file-ignores==3.2.0" ,
58- " pyproject-fmt==2.17 .0" ,
58+ " pyproject-fmt==2.18 .0" ,
5959 " pyrefly==0.55.0" ,
6060 " pyright==1.1.408" ,
6161 " pyroma==5.0.1" ,
@@ -159,11 +159,11 @@ lint.pydocstyle.convention = "google"
159159[tool .pylint ]
160160# Allow the body of an if to be on the same line as the test if there is no
161161# else.
162- " FORMAT" .single-line-if-stmt = false
162+ FORMAT.single-line-if-stmt = false
163163# Pickle collected data for later comparisons.
164- " MASTER" .persistent = true
164+ MASTER.persistent = true
165165# Use multiple processes to speed up Pylint.
166- " MASTER" .jobs = 0
166+ MASTER.jobs = 0
167167# List of plugins (as comma separated values of python modules names) to load,
168168# usually to register additional checkers.
169169# See https://chezsoi.org/lucas/blog/pylint-strict-base-configuration.html.
@@ -173,7 +173,7 @@ lint.pydocstyle.convention = "google"
173173# - pylint.extensions.magic_value
174174# - pylint.extensions.while_used
175175# as they seemed to get in the way.
176- " MASTER" .load-plugins = [
176+ MASTER.load-plugins = [
177177 " pylint_per_file_ignores" ,
178178 " pylint.extensions.bad_builtin" ,
179179 " pylint.extensions.comparison_placement" ,
@@ -193,7 +193,7 @@ lint.pydocstyle.convention = "google"
193193]
194194# Allow loading of arbitrary C extensions. Extensions are imported into the
195195# active Python interpreter and may run arbitrary code.
196- " MASTER" .unsafe-load-any-extension = false
196+ MASTER.unsafe-load-any-extension = false
197197# Enable the message, report, category or checker with the given id(s). You can
198198# either give multiple identifier separated by comma (,) or put this option
199199# multiple time (only on the command line, not in the configuration file where
@@ -250,12 +250,12 @@ lint.pydocstyle.convention = "google"
250250]
251251# Spelling dictionary name. Available dictionaries: none. To make it working
252252# install python-enchant package.
253- " SPELLING" .spelling-dict = " en_US"
253+ SPELLING.spelling-dict = " en_US"
254254# A path to a file that contains private dictionary; one word per line.
255- " SPELLING" .spelling-private-dict-file = " spelling_private_dict.txt"
255+ SPELLING.spelling-private-dict-file = " spelling_private_dict.txt"
256256# Tells whether to store unknown words to indicated private dictionary in
257257# --spelling-private-dict-file option instead of raising a message.
258- " SPELLING" .spelling-store-unknown-words = " no"
258+ SPELLING.spelling-store-unknown-words = " no"
259259
260260[tool .check-manifest ]
261261ignore = [
0 commit comments