File: CONTRIBUTING.md

package info (click to toggle)
liquidctl 1.15.0-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,312 kB
  • sloc: python: 13,599; sh: 712; xml: 84; makefile: 4
file content (51 lines) | stat: -rw-r--r-- 1,877 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Contributing to liquidctl

Thank you for your interest in contributing to liquidctl!  There are many ways
to contribute and we appreciate all of them.

We ask you, however, to adhere to our [code of conduct].

[code of conduct]: CODE_OF_CONDUCT.md

## Reporting bugs and other issues

Reporting problems with the software is an easy and very valuable way to
contribute to the project.  Please check the existing [issues] and, if none
matches your problem, use the appropriate template to create a [new issue].

[issues]: https://github.com/liquidctl/liquidctl/issues
[new issue]: https://github.com/liquidctl/liquidctl/issues/new/choose

## Contributing changes to code and/or documentation

Awesome!

We generally use [pull requests] to review and (assuming everything goes
well) merge contributions.

[pull requests]: https://github.com/liquidctl/liquidctl/pulls

It is not necessary to discuss a change beforehand in an issue, but that can
sometimes be helpful (e.g. to decide the best approach).  You can also reach
out to us and other fellow contributors on [Discord].

[Discord]: https://discord.gg/GyCBjQhqCd

Please also read the following documents, they will give you a general idea of
our development process and coding styling:

- [Development process](docs/developer/process.md)
- [Style guide](docs/developer/style-guide.md)

And, depending on what you are doing, some of these may also be useful:

- [Capturing USB Traffic](docs/developer/capturing-usb-traffic.md)
- [Techniques for analyzing USB protocols](docs/developer/techniques-for-analyzing-usb-protocols.md)
- [Porting drivers from OpenCorsairLink](docs/developer/porting-drivers-from-opencorsairlink.md) (introduces the liquidctl driver model)
- other documents in [`docs/developer`](docs/developer)

---

_The first sentences in this file were taken from rust-lang/rust's
CONTRIBUTING.md document._