Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 2.06 KB

CONTRIBUTING.md

File metadata and controls

63 lines (41 loc) · 2.06 KB

Welcome to the contribution section

Thank you for investing your time in contributing to our project!

Read our Code of Conduct to keep our community approachable and respectable.

Standard

Code contributions will only be accepted under the following conditions:

    "python.formatting.autopep8Path": "backend/venv/bin/autopep8",
    "python.formatting.provider": "autopep8",
class AnalyticsDashboardQuery(ObjectType):
    """_summary_

    Args:
       ObjectType (_type_): _description_
    """
  • on save settings as such
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
      "source.fixAll": true,
      "source.organizeImports": true,
      "source.sortMembers": true
    },

You can use the settings defined in .vscode/settings.json and install extensions using the @recommended tag.

Workflow

Please use the fork workflow for contributions.

TL;DR

  1. fork project
  2. create branch with issue number and name: #12 Example Issue -> 12_example_issue
  3. make changes
  4. draft pull request
  5. pass tests

Issues

Create a new issue

If you spot a problem using the app, search if an issue already exists. If a related issue doesn't exist, you can open a new issue using a relevant issue form.

Solve an issue

Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters. As a general rule, we don’t assign issues to anyone. If you find an issue to work on, you are welcome to open a PR with a fix.