Skip to content

Commit 1311bc9

Browse files
authored
Add missing functions that do not require parens to the formatter list (#367)
1 parent 93038c2 commit 1311bc9

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.formatter.exs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
locals_without_parens = [
22
add: 2,
33
add: 3,
4+
add_if_not_exists: 2,
5+
add_if_not_exists: 3,
46
alter: 2,
57
create: 1,
68
create: 2,
79
create_if_not_exists: 1,
810
create_if_not_exists: 2,
911
drop: 1,
12+
drop: 2,
1013
drop_if_exists: 1,
14+
drop_if_exists: 2,
1115
execute: 1,
1216
execute: 2,
1317
modify: 2,
1418
modify: 3,
1519
remove: 1,
1620
remove: 2,
1721
remove: 3,
22+
remove_if_exists: 2,
1823
rename: 2,
1924
rename: 3,
2025
timestamps: 1

0 commit comments

Comments
 (0)