@@ -9,9 +9,8 @@ license = "MIT License"
99python = " ^3.10"
1010click = " ^8.1.7"
1111loguru = " ^0.7.2"
12- peclasses = {version = " ^0.4.0" , source = " dfint" }
12+ peclasses = { version = " ^0.4.0" , source = " dfint" }
1313omegaconf = " ^2.3.0"
14- poethepoet = " ^0.29.0"
1514tqdm = " ^4.67.1"
1615
1716[tool .poetry .group .dev .dependencies ]
@@ -48,28 +47,28 @@ line-length = 120
4847[tool .ruff .lint ]
4948select = [" ALL" ]
5049ignore = [
51- " T201" , # `print` found
52- " S101" , # Use of assert detected
53- " ANN101" , # Missing type annotation for self in method
54- " C408" , # Unnecessary `dict` call (rewrite as a literal)
50+ " T201" , # `print` found
51+ " S101" , # Use of assert detected
52+ " ANN101" , # Missing type annotation for self in method
53+ " C408" , # Unnecessary `dict` call (rewrite as a literal)
5554 " D" ,
5655 # "D100", # Missing docstring in public module
5756 # "D104", # Missing docstring in public package
5857 # "D105", # Missing docstring in magic method
5958 # "D200", # One-line docstring should fit on one line
6059 # "D212", # Multi-line docstring summary should start at the first line
61- " TD" , # Ignore todo warnings
62- " FIX002" , # Ignore todo warnings
63- " COM812" , # Ignore missing trailing comma warning, which conflicts with formatter
60+ " TD" , # Ignore todo warnings
61+ " FIX002" , # Ignore todo warnings
62+ " COM812" , # Ignore missing trailing comma warning, which conflicts with formatter
6463]
6564
6665[tool .ruff .lint .per-file-ignores ]
6766"tests/*" = [
68- " S101" , # Don't warn about using of asserts in tests
67+ " S101" , # Don't warn about using of asserts in tests
6968 " ANN201" , # Ignore "Missing return type annotation for public function", tests don't return anything
70- " D" , # Don't warn about missing documentation in tests
69+ " D" , # Don't warn about missing documentation in tests
7170 " RUF001" , # String contains ambiguous {}. Did you mean {}?
72- " S311" , # Standard pseudo-random generators are not suitable for cryptographic purposes
73- " PLR2004" , # Magic value used in comparison
71+ " S311" , # Standard pseudo-random generators are not suitable for cryptographic purposes
72+ " PLR2004" , # Magic value used in comparison
7473 " FBT001" , # Ignore boolean positional argument
7574]
0 commit comments