wrap line to avoid style error

This commit is contained in:
Dan Dumont 2024-04-04 11:45:02 -04:00
parent c2251a4b48
commit 9768b681d0
No known key found for this signature in database
GPG Key ID: C1D78EE92127DA19
4 changed files with 15 additions and 6 deletions

8
.editorconfig Normal file
View File

@ -0,0 +1,8 @@
root = true
[*.rs]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab
tab_width = 4

View File

@ -3,7 +3,8 @@ macro_rules! known_content_codings {
Any (is_any): "any content coding", "*",
// BR (is_br): "Brotli Compressed Data Format", "br",
// COMPRESS (is_compress): "UNIX \"compress\" data format", "compress",
// DEFLATE (is_deflate): "\"deflate\" compressed data inside the \"zlib\" data format", "deflate",
// DEFLATE (is_deflate): "\"deflate\" compressed data inside the \"zlib\"
// data format", "deflate",
GZIP (is_gzip): "GZIP file format", "gzip",
IDENTITY (is_identity): "Reserved", "identity",
})