2023-04-14 17:00:15 +02:00
|
|
|
(block_scalar) @indent @extend
|
2022-03-30 17:08:07 +02:00
|
|
|
|
2023-04-14 17:00:15 +02:00
|
|
|
; indent sequence items only if they span more than one line, e.g.
|
|
|
|
;
|
|
|
|
; - foo:
|
|
|
|
; bar: baz
|
|
|
|
; - quux:
|
|
|
|
; bar: baz
|
|
|
|
;
|
|
|
|
; but not
|
|
|
|
;
|
|
|
|
; - foo
|
|
|
|
; - bar
|
|
|
|
; - baz
|
|
|
|
((block_sequence_item) @item @indent.always @extend
|
|
|
|
(#not-one-line? @item))
|
|
|
|
|
|
|
|
; map pair where without a key
|
|
|
|
;
|
|
|
|
; foo:
|
|
|
|
((block_mapping_pair
|
|
|
|
key: (_) @key
|
|
|
|
!value
|
|
|
|
) @indent.always @extend
|
|
|
|
)
|
|
|
|
|
|
|
|
; map pair where the key and value are on different lines
|
|
|
|
;
|
|
|
|
; foo:
|
|
|
|
; bar: baz
|
|
|
|
((block_mapping_pair
|
|
|
|
key: (_) @key
|
|
|
|
value: (_) @val
|
|
|
|
(#not-same-line? @key @val)
|
|
|
|
) @indent.always @extend
|
|
|
|
)
|