You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be helpful to specify formats that fields should be generated in?
for example
// Class is/is not annotated with `additionalFormats: []` (default)Example.fields.firstName // returns 'firstName'// Class is annotated with `additionalFormats: [FieldRename.snake, FieldRename.kebab]`Example.fields.defaults.firstName // returns 'firstName'Example.fields.snake.firstName // returns 'first_name'Example.fields.kebab.firstName // returns 'first-name'
The text was updated successfully, but these errors were encountered:
mrgnhnt96
changed the title
Options for different formats?
Options for multiple formats?
Oct 11, 2021
Would it be helpful to specify formats that fields should be generated in?
for example
The text was updated successfully, but these errors were encountered: