Skip to main content

oxilean_parse/roundtrip/
roundtripconfigext_traits.rs

1//! # RoundTripConfigExt - Trait Implementations
2//!
3//! This module contains trait implementations for `RoundTripConfigExt`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::RoundTripConfigExt;
12
13impl Default for RoundTripConfigExt {
14    fn default() -> Self {
15        RoundTripConfigExt {
16            normalise_whitespace: true,
17            strip_comments: false,
18            case_insensitive: false,
19            allow_trailing_newlines: true,
20            max_edit_distance: 0,
21        }
22    }
23}