about summary refs log blame commit diff
path: root/tvix/clippy.toml
blob: 31952cc80ad1f07c82948c7669065017915e94c8 (plain) (tree)
1
2
3
4
5
6
7
8


                                                                             
                                                                   
                 

                                                
 
# prevents a false-positive lint on our types containing bytes::Bytes
# https://rust-lang.github.io/rust-clippy/master/index.html#/mutable_key_type
ignore-interior-mutability = [
  # make sure to specify the originating type name, not re-exports!
  "bytes::Bytes",
  "tvix_castore::digests::B3Digest",
  "tvix_castore::path::component::PathComponent"
]