Skip to Main Content

Oracle Developer Tools for VS Code

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

21.6.0 Formatting Bug

Kevin WhiteJul 27 2023

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);

Comments
Post Details
Added on Jul 27 2023
2 comments
438 views