1
2
3
4
5
6
7
8
9
10
11
12
use crate::prelude::*;

use biome_js_syntax::JsArrayHole;

#[derive(Debug, Clone, Default)]
pub(crate) struct FormatJsArrayHole;

impl FormatNodeRule<JsArrayHole> for FormatJsArrayHole {
    fn fmt_fields(&self, _: &JsArrayHole, _: &mut JsFormatter) -> FormatResult<()> {
        Ok(())
    }
}