Merge pull request #6464 from ThomasWaldmann/exclude-checksums-c

fixup: fix some algorithms/* ignores
This commit is contained in:
TW 2022-03-18 01:18:39 +01:00 committed by GitHub
commit dfd7ea8171
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 7 deletions

View File

@ -2,12 +2,7 @@
# note: put developer specific settings into ~/.coarc (e.g. editor = ...) # note: put developer specific settings into ~/.coarc (e.g. editor = ...)
max_line_length = 255 max_line_length = 255
use_spaces = True use_spaces = True
ignore = src/borg/(chunker.c|compress.c|hashindex.c|item.c), ignore = src/borg/(checksums.c|chunker.c|compress.c|hashindex.c|item.c),
src/borg/algorithms/(checksums.c|crc32*.c),
src/borg/algorithms/blake2/**,
src/borg/algorithms/lz4/**,
src/borg/algorithms/xxh64/**,
src/borg/algorithms/zstd/**,
src/borg/crypto/low_level.c, src/borg/crypto/low_level.c,
src/borg/platform/*.c src/borg/platform/*.c

2
.gitignore vendored
View File

@ -10,7 +10,7 @@ src/borg/crypto/low_level.c
src/borg/hashindex.c src/borg/hashindex.c
src/borg/item.c src/borg/item.c
src/borg/chunker.c src/borg/chunker.c
src/borg/algorithms/checksums.c src/borg/checksums.c
src/borg/platform/darwin.c src/borg/platform/darwin.c
src/borg/platform/freebsd.c src/borg/platform/freebsd.c
src/borg/platform/linux.c src/borg/platform/linux.c