Closed ice1000 closed 2 years ago
The doc says,
Example of a setting file: # JuliaCorpConfig IndentWidth = 3 UseTab = true TabWidth = 4 AlignAfterOpenBracket = Align All the available settings and corresponding possible values (default value in bold): • AlignAfterOpenBracket : Align, AlwaysBreak, DontAlign • IndentEXPR : DataType[CSTParser.Begin, CSTParser.Quote, CSTParser.For, CSTParser.While, CSTParser.FunctionDef, CSTParser.Macro, CSTParser.Struct, CSTParser.Let, CSTParser.Try, CSTParser.If, CSTParser.Mutable] • IndentWidth : 4 • KW_WS : true • NewLineEOF : false • No_WS_OP_group : [8, 13, 14, 16] • No_WS_OP_indv : Any[] • StripLineEnds : false • TabWidth : 4 • UseTab : false
But IndentEXPR is an array of expressions. Should I write
IndentEXPR
IndentEXPR = [CSTParser.Let, CSTParser.Quote]
or
IndentEXPR = CSTParser.Let, CSTParser.Quote
or I can only select one EXPR?
EXPR
The usage is also not shown in the examples.
Closed without explanation? 🤔
DocumentFormat is now just a wrapper around JuliaFormatter.jl that we use for some internal stuff.
Ok good
Thanks for your explanation
The doc says,
But
IndentEXPR
is an array of expressions. Should I writeor
or I can only select one
EXPR
?The usage is also not shown in the examples.