-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use prettier to format *all* source files in client packages #3240
Conversation
user: DATABASE_USER || 'postgres', | ||
password: DATABASE_PASSWORD || 'postgres', | ||
database: DATABASE_DB || 'postgres_example', | ||
user: DATABASE_USER || "postgres", |
Check failure
Code scanning / CodeQL
Hard-coded credentials
password: DATABASE_PASSWORD || 'postgres', | ||
database: DATABASE_DB || 'postgres_example', | ||
user: DATABASE_USER || "postgres", | ||
password: DATABASE_PASSWORD || "postgres", |
Check failure
Code scanning / CodeQL
Hard-coded credentials
Passing run #1789 ↗︎
Details:
This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for this update!
Closes #3208
Code Changes
prettier --write src __tests__/
-->prettier --write .
)Steps to Confirm
turbo format:ci
from clients/ to quickly re-run formatting on the turbo-enabled packages (admin-ui, privacy-center, fides-js)npm run format:ci
from the non-turbo packages (cypress-e2e, sample-app)Pre-Merge Checklist
CHANGELOG.md
Description Of Changes
I noticed that not all our source files were covered by prettier - this fixes that! 🎨