name Indentation Rules scope source.go settings decreaseIndentPattern increaseIndentPattern (?x) ^ (?: .* \*/ )? # skip any comments (?: (.* \{ [^}"'\n]*) # lines containing an open curly but no quotes or close curly | # OR (?:\s* (case|default).*:) # case statements | # OR (.* \( [^)"'\n]*) # lines containing an open brace but no quotes or close brace ) (//.*|/\*.*\*/\s*)? # skip any comments (optional) $ unIndentedLinePattern ^\s*((/\*|\*/|//|import\b.*|package\b.*).*)?$