Fix automatic formatting for nested types (#457)

without this `<` and `>` are getting formatted as operators instead of parens
This commit is contained in:
Daniel Thorn 2019-10-29 22:17:06 -07:00 коммит произвёл GitHub
Родитель ea3ae03f52
Коммит b65fbbbd93
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -50,8 +50,8 @@ const tokenizerCfg = {
reservedNewlineWords: ['AND', 'BETWEEN', 'ELSE', 'OR', 'WHEN', 'XOR'],
// eslint-disable-next-line quotes
stringTypes: [`''`, '""', '``'],
openParens: ['(', 'CASE', '['],
closeParens: [')', 'END', ']'],
openParens: ['(', 'CASE', '[', 'STRUCT<', 'ARRAY<'],
closeParens: [')', 'END', ']', '>', '>'],
indexedPlaceholderTypes: ['?'],
namedPlaceholderTypes: ['@'],
lineCommentTypes: ['#', '--'],