@@ -37,8 +37,8 @@ include = [
3737preview = true
3838
3939[tool .ruff .lint .per-file-ignores ]
40- "test/*.py" = [" S102 " ]
41- "doc/conf.py" = [" S102 " ]
40+ "test/*.py" = [" exec-builtin " ]
41+ "doc/conf.py" = [" exec-builtin " ]
4242
4343[tool .ruff .lint ]
4444extend-select = [
@@ -57,13 +57,13 @@ extend-select = [
5757]
5858extend-ignore = [
5959 " C90" , # McCabe complexity
60- " E221 " , # multiple spaces before operator
61- " E226 " , # missing whitespace around arithmetic operator
62- " E402 " , # module-level import not at top of file
63- " UP006 " , # updated annotations due to __future__ import
64- " UP007 " , # updated annotations due to __future__ import
65- " UP031 " , # use f-strings instead of %
66- " UP032 " , # use f-strings instead of .format
60+ " multiple- spaces- before- operator" ,
61+ " missing- whitespace- around- arithmetic- operator" ,
62+ " module-import- not-at- top-of- file" ,
63+ " non-pep585-annotation " ,
64+ " non-pep604-annotation-union " ,
65+ " printf-string-formatting " ,
66+ " f-string " ,
6767]
6868[tool .ruff .lint .flake8-quotes ]
6969docstring-quotes = " double"
0 commit comments