Skip to content

Commit

Permalink
Mark remaining ignores for codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Oct 15, 2024
1 parent 0ad39eb commit 418945b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git*,*.svg,*.lock,*.css,.codespellrc
check-hidden = true
ignore-regex = ^\s*"image/\S+": ".*
ignore-regex = ^\s*"image/\S+": ".*|\bND\b
ignore-words-list = crate
2 changes: 1 addition & 1 deletion icechunk/tests/test_s3_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub async fn test_chunk_write_read() -> Result<(), Box<dyn std::error::Error>> {
assert_eq!(Bytes::from_static(b"ello"), back);

let back = storage.fetch_chunk(&id, &ByteRange::to_offset(3)).await?;
assert_eq!(Bytes::from_static(b"hel"), back);
assert_eq!(Bytes::from_static(b"hel"), back); // codespell:ignore

let back = storage.fetch_chunk(&id, &ByteRange::bounded(1, 4)).await?;
assert_eq!(Bytes::from_static(b"ell"), back);
Expand Down

0 comments on commit 418945b

Please sign in to comment.