Skip to content

Latest commit

 

History

History
123 lines (93 loc) · 6.07 KB

CONTRIBUTING.md

File metadata and controls

123 lines (93 loc) · 6.07 KB

Contributing Guide

When contributing to this repository, please first discuss the change you wish to make via the issue tracker or the discussions page with the owner of this repository. Especially if it is regarding new features. If you just want to make a minor correction, like fix a typo or similar, feel free to just make a pull request directly.

The following contributions are welcome:

  • Bugfixes for new or existing bugs. Please also report new bugs in the issue tracker even if you also provide a fix. It makes it easier to keep track of what has been fixed and when.
  • New translations. You can read more about contributing translations here.
  • Improvements to the documentation. Particularly if the documentation is unclear. Please don't make any larger changes to the documentation without discussing if with the maintainer first.
  • Adaptations, installation or packaging features targeting specific operating systems.

Please do not:

  • Make a pull request that restructures or reformats existing code. If you think some parts of the code could be improved, please make an issue thread or start a discussion. The same applies to any text document in the repository.

Pull Requests

This project follows the OneFlow model. The main branch is the default branch. For general changes, please make a new branch in your own fork from the current main branch. Do not make pull requests from your own main branch.

Note: If your contribution is a bugfix for a specific version, please make a bugfix branch from the tag you want the fix to be applied to, not directly from the main branch. This is important.

Also check the following:

  • Make sure your code passes all tests and conforms to the style guide. You can check that the code generally conforms by running the Python linting tool flake8 from the root of the project folder, although it doesn't check everything. The same check is also run on pull requests by the maintainer.
  • Please provide a description of the changes in the pull request under the summary section of the pull request template, and reference any related issues by providing the issue number.
  • Do not change the version number.
  • Do not submit files that were not actively changed but have otherwise been modifed. This is mostly an issue with translation files. The language tool may update all files in the i18n folder.

Code of Conduct

There is a code of conduct. Please follow it in all your interactions with the project.

Our Pledge

In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.

Please see the CODE_OF_CONDUCT file for the full text.

Code Style Guide

The source code of novelWriter broadly follows the PEP8 style guide, but with a few exceptions. Some key points are listed below.

Line Length:

  • Source code lines can extend to the upper limit of 99 characters allowed by PEP8. 79 characters is the recommended line length in PEP8, but this is often too restrictive. 99 characters are acceptable when that is more practical. Readability has priority. Generally, if a code statement requires multiple lines, the lines should wrap at 79 characters if possible. If wrapping can be avoided by going to 99, then that is generally preferrable.
  • For text files, the text should be wrapped at 99 character. The exception is markdown image tags and urls which can run past that limit.

Variable and Function Names

  • PEP8 allows for camelCase for consistency with existing code. The Qt library uses camelCase, so the Python the source code does too.
  • The exception to the above is for constants. They should always be in upper snake case, like PEP8 states.

Spaces, Indentation and Alignment

  • Only indentation by 4 spaces is allowed.
  • No trailing spaces should occur on any line in the source code, including empty lines.
  • Ideally, a function should end on the same indention level as it started. Exceptions are allowed if it makes the code easier to follow.
  • Aligning operators and attributes in columns with multiple spaces is not allowed by PEP8. The rule is relaxed a bit here. Alignment is allowed when populating large dictionaries or setting many class attributes. It does improve readability in such cases, but should not be overused.

Linting with flake8

A good tool for checking Python code for errors and code style is flake8. The documentation is available here.

The setup.cfg file in the root of this project has the following settings for flake8 that matches the above code style:

[flake8]
ignore = E221,E226,E228,E241
max-line-length = 99
exclude = docs/*

The command line equivalent, with reporting, is:

flake8 . --count --ignore E221,E226,E228,E241 --max-line-length=99 --show-source --statistics

Passing this check is required before contributions are merged. This is checked automatically when you make a pull request. You can run the flake8 command locally to check beforehand. The full command will give you a detailed description of the code lines that do not conform to the standard.

Two of the ignored errors are due to the relaxed restriction on column alignment, these are the E221 and E241 error codes.

The code E226 is ignored becuse it doesn't actually follow the PEP8 recommendation of grouping longer equations by operator precedence like 2*a + 3*b instead of a * a + 3 * b. Generally, don't use spaces around *, / and **, but do use spaces around + and -. The same applies to the modulo operator %, hence E228 is also ignored.