Skip to content

Addtional information for contributors #165

@deloarts

Description

@deloarts

@evereux: Maybe add additional information to the contributing chapter in the readme for people who want to contribute to pycatia:

  • how to format the code
  • how to sort imports
  • what line length limit is defined
  • create pull requests to the development branch only (*edited)
  • something else?

For everyone who uses VS Code, add this to your workspace settings to match pycatias formatting:

{
    "[python]": {
        "editor.rulers": [
            120
        ],
        "editor.formatOnSave": true,
        "editor.codeActionsOnSave": {
            "source.organizeImports": true
        },
        "editor.defaultFormatter": "ms-python.black-formatter"
    },
    "pylint.args": [
        "--line-length",
        "120"
    ],
    "black-formatter.args": [
        "--line-length",
        "120"
    ],
    "isort.args": [
        "--profile",
        "black",
        "-sl"
    ],
    "python.testing.pytestArgs": [
        "tests/in"
    ]
}

Note: This requires the following extensions:

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions