The formatter does not obey the commas per line rule for Type Declarations in packages
When commas per line set to 1
Unformatted
CREATE OR REPLACE PACKAGE my_package
TYPE my_type IS RECORD
(
my_first_type NUMBER
,my_second_type NUMBER
);
Formatted
TYPE my_type IS RECORD ( my_frist_type NUMBER, my_second_type NUMBER);