-
Notifications
You must be signed in to change notification settings - Fork 65
Open
Description
@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