Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 889 Bytes

contributing.md

File metadata and controls

28 lines (20 loc) · 889 Bytes

Contributing

Naming conventions:

  • PascalCase: for class names
  • UPPER_SNAKE_CASE: for constants
  • snake_case: for everything else

Formatting

  • Use black
  • Max line width of 120 characters, vscode settings:
    "python.formatting.provider": "black",
    "python.formatting.blackArgs": [
        "--line-length=120",
        "--target-version=py37",
    ],
    "editor.formatOnSave": true,

Submitting code

  • Make sure the code is tested, documented, then create a draft pull request from your feature branch.