Type: < Description >
We will use the types defined by Conventional Commits: feat, fix, task, test
- feat: Indicates the development of a new feature
- fix: Indicates the fixing of a bug or issue within the program
- task: Represents a small task performed by a team member
- test: Indicates everything related to the tests for de modules.
Short descriptive messages of the changes made, starting with an infinitive verb and all will be in lowercase.
We will follow the official Python version; PEP 8, which indicates:
-
Use of 4 spaces for indentation per level
-
Maximum line length of 79 characters
-
Code in the core Python distribution should always use UTF-8
-
Imports should be one per line and placed at the beginning of each class
-
Comments should be single-sentence for easy readability and understanding
-
Inline comments should be indented with a single tab space
-
Classes should be named using the UpperCamelCase convention, where each word starts with a capital letter and there are no spaces between words.
-
Methods should be named following the snake_case convention, in which all words are written in lowercase and separated from each other by underscores (_). "# logisticsEvents"