-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformatTypes.ts
55 lines (51 loc) · 2.32 KB
/
formatTypes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { notUndefined, RemoveProperties } from 'misc-utils-of-mine-generic'
import { FormatOptions, ts } from 'ts-simple-ast-extra'
import { FixOptions } from '../fix'
import { formatOptions } from './formatOptions'
export interface AllFormatCodeSettings extends RemoveProperties<FormatOptions, 'file' | 'project' | 'debug'> { }
export interface FixWithFormatCodeSettingOptions extends FixOptions {
formatCodeSettings?: AllFormatCodeSettings
}
export const allFormatCodeSettingsNames = formatOptions.properties!.map(o => o.name).filter(notUndefined)
export const defaultFormatOptions: Required<AllFormatCodeSettings> = {
'insertSpaceBeforeAndAfterBinaryOperators': false,
'insertSpaceAfterCommaDelimiter': false,
'insertSpaceAfterSemicolonInForStatements': false,
'insertSpaceAfterConstructor': false,
'insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis': false,
'insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets': false,
'insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces': false,
'insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces': false,
'insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces': false,
'insertSpaceAfterTypeAssertion': false,
'insertSpaceBeforeFunctionParenthesis': false,
'placeOpenBraceOnNewLineForFunctions': false,
'placeOpenBraceOnNewLineForControlBlocks': false,
'insertSpaceBeforeTypeAnnotation': false,
'indentMultiLineObjectLiteralBeginningOnBlankLine': false,
'indentSize': 2,
ensureNewLineAtEndOfFile: false,
insertSpaceAfterKeywordsInControlFlowStatements: false,
insertSpaceAfterFunctionKeywordForAnonymousFunctions: false,
baseIndentSize: 0,
tabSize: 2,
newLineCharacter: '\n',
indentStyle: ts.IndentStyle.Block,
disableSuggestions: false,
emptyLinesMax: 1,
emptyLinesTrim: false,
_projectManipulationSetted: false,
formatJsdocs: false,
'convertTabsToSpaces': false,
'quotePreference': 'single',
'importModuleSpecifierPreference': 'relative',
'importModuleSpecifierEnding': 'minimal',
'allowTextChangesInNewFiles': false,
'trailingSemicolons': 'always',
includeCompletionsForModuleExports: true,
includeCompletionsWithInsertText: true,
providePrefixAndSuffixTextForRename: false,
organizeImports: true,
verifyErrors: 'syntactical',
formatJsdocsFormatBefore: false, formatJsdocsFormatAfter: false, jsdocLineMaxLength: 110
}