You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
621 B
23 lines
621 B
# Maximum width of each line |
|
max_width = 100 |
|
|
|
# Error if unable to get all lines within max_width |
|
error_on_line_overflow = false |
|
|
|
# Use tab characters for indentation, spaces for alignment |
|
hard_tabs = true |
|
|
|
# Convert /* */ comments to // comments where possible |
|
normalize_comments = false |
|
|
|
# Put a trailing comma after a block based match arm (non-block arms are not affected) |
|
match_block_trailing_comma = true |
|
|
|
# Replace uses of the try! macro by the ? shorthand |
|
use_try_shorthand = true |
|
|
|
# don't screw alignment |
|
ignore = [ |
|
'lib/dnsbox-base/src/common_types/types.rs', |
|
'lib/dnsbox-base/src/common_types/classes.rs', |
|
]
|
|
|