We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a743a commit 677ff08Copy full SHA for 677ff08
pyproject.toml
@@ -122,7 +122,8 @@ select = [
122
"TID",
123
"ARG",
124
"RET",
125
- "PIE"
+ "PIE",
126
+ "SLF"
127
]
128
129
[tool.ruff.lint.isort]
@@ -134,6 +135,9 @@ combine-as-imports = true
134
135
"docs/examples/*.ipynb" = ["F811", "E402"]
136
# Pylint was only run in src directory before moving to Ruff
137
"tests/*" = ["PLR0915", "PLR0912", "PLR0913"]
138
+# Ignore private member access: _model_ptr, _all_component_count...
139
+"src/power_grid_model/_core/*.py" = ["SLF001"]
140
+"tests/unit/test_error_handling.py" = ["SLF001"]
141
"setup.py" = ["PL"]
142
143
[tool.mypy]
0 commit comments