This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Based on the company template
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Contributing | ||
|
||
## License | ||
|
||
This project is distributed under the Apache-2.0 license. Every source file | ||
should start with a header comment specifying the license using an [SPDX license | ||
identifier](https://spdx.dev/learn/handling-license-info/) along with a | ||
copyright notice. E.g., for an OCaml file: | ||
|
||
```ocaml | ||
(* SPDX-License-Identifier: Apache-2.0 | ||
* 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: | ||
|
||
```ocaml | ||
(* SPDX-License-Identifier: Apache-2.0 | ||
* Copyright (c) 2024-2025 Puneeth Chaganti <[email protected]> | ||
* Copyright (c) 2025-2025 Tarides <[email protected]> | ||
*) | ||
``` |