prisma-case-format
prisma-case-format copied to clipboard
Give your introspected schema.prisma sane naming conventions
Hi, I found this same issue in the library `https://github.com/loop-payments/prisma-lint` and that's why I tried this one for case linting of tables and field for a model of MongoDB in...
Currently, the only way to use this tool is through the CLI. While I love your package and I find it great, I would love for my prisma schema file...
The Prisma formatter does not only format the schema file, but also does maintenance work on it, such as adding missing relations maps to models that specifies relations. Currently, if...
For node projects and especially for those of us who want to keep the number dotfiles low, it'd be lovely if the config could alternatively be specified in `package.json`. As...
Prisma cli uses the schema location specified by `prisma.schema` in `package.json` by default, so it doesn't need to be specified explicitely when running commands. It'd be very convenient if prisma-case-format...
Thank you for a great tool. I would like to add a prefix to `@@map` in enum. For example, `enum UserType` would look like `@@map("enum_user_type")`. I couldn't find it in...
Hello folks, hope you're doing well Thanks for creating this community tool, that's awesome! I tried this tool but I'm getting errors with fields that includes numbers, e.g: ``` address_line_1...
This merge request introduces a new formatting case: CONSTANT_CASE. The ability to format in CONSTANT_CASE is important for our project as we aim to align our Prisma enums with this...