Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/examples/notebooks/georgia_tech.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"RichDocument.from_document_file(\"https://mellea.ai\")\n",
"\n",
"# Some UI niceness.\n",
"from IPython.display import HTML, display\n",
"from IPython.display import HTML, display # noqa: E402\n",
"\n",
"\n",
"def set_css():\n",
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ ignore = [
# "UP006", # List vs list, etc
# "UP007", # Option and Union
# "UP035", # `typing.Set` is deprecated, use `set` instead"
"PD901", # Avoid using the generic variable name `df` for DataFrames
]

[tool.ruff.lint.pydocstyle]
Expand All @@ -151,7 +152,7 @@ combine-as-imports = true
split-on-trailing-comma = false

[tool.codespell]
ignore-words-list = 'mellea,hashi,noo,Asai,asai'
ignore-words-list = 'mellea,hashi,noo,Asai,asai,nd'
check-filenames = true
check-hidden = false
regex = "(?<![a-z])[a-z'`]+|[A-Z][a-z'`]*|[a-z]+'[a-z]*|[a-z]+(?=[_-])|[a-z]+(?=[A-Z])|\\d+"
Expand Down
Loading