Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.76 KB

File metadata and controls

53 lines (40 loc) · 1.76 KB

Contributing

Contributions are welcome from anyone! Whether you're part of Tarides or an external contributor, we appreciate your input to improve this handbook.

How to Contribute

  1. Fork this repository
  2. Make your changes in a new branch
  3. Submit a pull request with a clear description of your changes

Note: All pull requests will be reviewed and merged only by senior leadership at Tarides to ensure consistency and accuracy.

License

This project is distributed under the MIT license. Every source file should start with a header comment specifying the license using an SPDX license identifier along with a copyright notice. E.g., for a shell script:

# SPDX-License-Identifier: MIT
# Copyright (c) <date> <author> <email>

Note that:

  • The holder, on the copyright line, is the name of individual contributors and/or their company;
  • When adding a significant new contribution to a file (i.e. more like whole new features, rather than simple fixes), check whether there already is a copyright for your copyright holder (see above):
    • If there is one, mentioning any year, it is not required to add the current year (but this is allowed). In no case should you replace the existing year with the current one.
    • If there is no line for your copyright holder, you should add one, with the current year.

For example, for a source file with multiple contributors spanning several years, the copyright lines may look as follows:

# SPDX-License-Identifier: MIT
# Copyright (c) 2013-2022 Thomas Gazagnaire <thomas@gazagnaire.org>
# Copyright (c) 2018-2022 Tarides <contact@tarides.com>

Tarides