Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Add CONTRIBUTING.md
Browse files Browse the repository at this point in the history
Based on the company template
  • Loading branch information
shonfeder authored and punchagan committed Sep 16, 2024
1 parent e91afc6 commit a11fe1f
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions CONTRIBUTING.md
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]>
*)
```

0 comments on commit a11fe1f

Please sign in to comment.