4
0
mirror of https://github.com/QuasarApp/zip.git synced 2025-05-02 23:29:33 +00:00

Create CONTRIBUTING.md

This commit is contained in:
Kuba Podgórski 2020-11-05 10:49:58 +01:00 committed by GitHub
parent e2246cb5c6
commit 3d8c7ce458
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
CONTRIBUTING.md Normal file

@ -0,0 +1,8 @@
# Contribution Rules/Coding Standards
No need to throw away your coding style, just do your best to follow default clang-format style.
Apply `clang-format` to the source files before commit:
```sh
for file in $(git ls-files | \grep -E '\.(c|h)$' | \grep -v -- '#')
do
clang-format -i $file
done