1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Merge pull request #2503 from miDeb/patch-1

docs: Mention the GNU manual in the contributing guide
This commit is contained in:
Sylvestre Ledru 2021-07-16 20:18:32 +02:00 committed by GitHub
commit df0382c31b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ search the issues to make sure no one else is working on it.
## Best practices ## Best practices
1. Follow what GNU is doing in term of options and behavior. 1. Follow what GNU is doing in terms of options and behavior. It is recommended to look at the GNU Coreutils manual ([on the web](https://www.gnu.org/software/coreutils/manual/html_node/index.html), or locally using `info <utility>`). It is more in depth than the man pages and provides a good description of available features and their implementation details.
1. If possible, look at the GNU test suite execution in the CI and make the test work if failing. 1. If possible, look at the GNU test suite execution in the CI and make the test work if failing.
1. Use clap for argument management. 1. Use clap for argument management.
1. Make sure that the code coverage is covering all of the cases, including errors. 1. Make sure that the code coverage is covering all of the cases, including errors.