Skip to main content

oxilean_parse/token/
reformatoptions_traits.rs

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