chore: update config
Browse files- .gitignore +6 -0
- pyproject.toml +5 -0
.gitignore
CHANGED
|
@@ -26,3 +26,9 @@ poetry.lock
|
|
| 26 |
|
| 27 |
#csv files
|
| 28 |
*.csv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
#csv files
|
| 28 |
*.csv
|
| 29 |
+
|
| 30 |
+
# ruff cache
|
| 31 |
+
.ruff_cache/
|
| 32 |
+
|
| 33 |
+
# Mac files
|
| 34 |
+
.DS_Store
|
pyproject.toml
CHANGED
|
@@ -55,6 +55,11 @@ ignore = [
|
|
| 55 |
"E501" # Line too long
|
| 56 |
]
|
| 57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
[build-system]
|
| 59 |
requires = ["poetry-core>=1.5.0"]
|
| 60 |
build-backend = "poetry.core.masonry.api"
|
|
|
|
| 55 |
"E501" # Line too long
|
| 56 |
]
|
| 57 |
|
| 58 |
+
[tool.ruff]
|
| 59 |
+
line-length = 88
|
| 60 |
+
select = ["E", "F"] # or specify checks explicitly without E501
|
| 61 |
+
ignore = ["E501"]
|
| 62 |
+
|
| 63 |
[build-system]
|
| 64 |
requires = ["poetry-core>=1.5.0"]
|
| 65 |
build-backend = "poetry.core.masonry.api"
|