File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,6 @@ Return non-nil if any line breaks were skipped."
264
264
)
265
265
(non-block-expr
266
266
(non-block-expr " OP" non-block-expr)
267
- (non-block-expr " DOT" non-block-expr)
268
267
(non-block-expr " COMMA" non-block-expr)
269
268
(" (" statements " )" )
270
269
(" {" statements " }" )
@@ -275,8 +274,7 @@ Return non-nil if any line breaks were skipped."
275
274
(match-statement))
276
275
(match-statement
277
276
(non-block-expr " ->" statements)))
278
- '((assoc " DOT" )
279
- (assoc " if" )
277
+ '((assoc " if" )
280
278
(assoc " do:" )
281
279
(assoc " else:" )
282
280
(assoc " COMMA" )
Original file line number Diff line number Diff line change @@ -374,3 +374,12 @@ end"
374
374
x = fn(a, b) -> a + b end
375
375
end
376
376
end" )
377
+
378
+ (elixir-def-indentation-test indents-list-of-floats-aligns
379
+ ()
380
+ "
381
+ [1.2,
382
+ 3.4]"
383
+ "
384
+ [1.2,
385
+ 3.4]" )
You can’t perform that action at this time.
0 commit comments