Skip to content

Commit c5e2d88

Browse files
committed
config updated
1 parent c473798 commit c5e2d88

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ __pycache__/
1010
# C extensions
1111
*.so
1212

13+
# ruff cache
14+
.ruff_cache
15+
__ruff_logs__/
16+
1317
# Distribution / packaging
1418
.Python
1519
build/

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ dependencies = [
1010
"numpy>=2.4.0",
1111
"pandas>=2.3.3",
1212
"plotly>=6.5.0",
13-
"pyzmq>=27.1.0",
1413
"wigglystuff>=0.2.5",
1514
]
1615

@@ -19,4 +18,9 @@ dev = [
1918
"ruff>=0.14.10",
2019
]
2120

22-
# ADD THE DESCRIPTION
21+
[tool.ruff]
22+
line-length = 100
23+
target-version = "py312"
24+
25+
[tool.ruff.lint]
26+
ignore = ["T201"] # allows print statements

0 commit comments

Comments
 (0)