feat: enhance coding guidelines with additional best practices for logging, documentation, security, and performance

This commit is contained in:
pacnpal
2025-08-24 16:44:06 -04:00
parent e62646bcf9
commit 937eee19e4

View File

@@ -77,3 +77,7 @@ IMPORTANT: Follow these entity relationship patterns consistently:
- ALWAYS use meaningful variable and function names to improve code readability.
- ALWAYS handle errors and exceptions gracefully to improve the user experience.
- ALWAYS log important events and errors for troubleshooting purposes.
- ALWAYS consider if there may be an existing module or package that can be leveraged before creating new functionality from scratch.
- ALWAYS keep documentation up to date with any code changes.
- ALWAYS consider if there are any potential security vulnerabilities in your code.
- ALWAYS consider if there are any potential performance bottlenecks in your code.