Clean Code

Write clean Python functions with type hints and no docstrings

Anyesh 08fae9f 315 B Updated

File contents

When writing Python code:

  • Always include type hints on function parameters and return types
  • Never add docstrings to simple utility functions
  • Use descriptive variable names
  • Keep functions focused and short

Anyesh/skillprobe/tree/main/examples/skills/clean-code commit 08fae9f5be

Frequently asked questions

npx skillmds@latest add anyesh/clean-code