dprint-plugin-sql 0.2.0

SQL formatter for dprint via sqlformat-rs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use dprint_core::configuration::NewLineKind;
use serde::{Deserialize, Serialize};

#[derive(Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Configuration {
  pub use_tabs: bool,
  pub indent_width: u8,
  pub new_line_kind: NewLineKind,
  pub uppercase: bool,
  pub lines_between_queries: u8,
}