MCPcopy
hub / github.com/sql-formatter-org/sql-formatter / FormatOptions

Interface FormatOptions

src/FormatOptions.ts:14–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12export type LogicalOperatorNewline = 'before' | 'after';
13
14export interface FormatOptions {
15 tabWidth: number;
16 useTabs: boolean;
17 keywordCase: KeywordCase;
18 identifierCase: IdentifierCase;
19 dataTypeCase: DataTypeCase;
20 functionCase: FunctionCase;
21 indentStyle: IndentStyle;
22 logicalOperatorNewline: LogicalOperatorNewline;
23 expressionWidth: number;
24 linesBetweenQueries: number;
25 denseOperators: boolean;
26 newlineBeforeSemicolon: boolean;
27 params?: ParamItems | string[];
28 paramTypes?: ParamTypes;
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…