update CLAUDE.md

This commit is contained in:
Mark Eaton
2026-04-21 18:28:53 +00:00
parent e5ef584165
commit ce072210a1
+3 -2
View File
@@ -5,7 +5,8 @@
- use uv for dependency management and python version management
- prefer using Python to other languages when it is appropriate
- use Flask or Quart as a framework
- use pytest for testing. Encourage and support a test-driven development (TDD) approach.
- use pytest for testing. Encourage and support a test-driven development (TDD) approach. Always use the /pytest skill when writing Python
- use the `python-dotenv` library for environment variables
## JavaScript
- use prettier for code formatting
@@ -31,7 +32,7 @@
## Git
- commit frequently. Smaller commits are better than big ones.
- use imperative mood for commit messages. Keep the first line under 72 characters.
- do not commit secrets, .env files, or credentials.
- do not commit secrets, .env files, credentials, or anything that may seem sensitive
## Other guidance
- avoid running unsafe operations, such as curl piped to bash, or other such dangerous procedures. If such an approach seems necessary, please consult with me first and explain the risks.