mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
da33c9619c
* Update to leveldb upstream using subtree merge * Import crc32c using subtree merge as as 'src/crc32c' * build: Update build system for new leveldb Upstream leveldb switched build systems, which means we need to define a few different values. Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com> * doc: Add crc32c subtree to developer notes * test: Add crc32c to subtree check linter * test: Add crc32c exception to various linters and generation scripts * build: Add LCOV exception for crc32c Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com> * build: CRC32C build system integration Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
19 lines
707 B
YAML
19 lines
707 B
YAML
# Run manually to reformat a file:
|
|
# clang-format -i --style=file <file>
|
|
# find . -iname '*.cc' -o -iname '*.h' -o -iname '*.h.in' | xargs clang-format -i --style=file
|
|
BasedOnStyle: Google
|
|
DerivePointerAlignment: false
|
|
|
|
# Public headers are in a different location in the internal Google repository.
|
|
# Order them so that when imported to the authoritative repository they will be
|
|
# in correct alphabetical order.
|
|
IncludeCategories:
|
|
- Regex: '^(<|"(benchmarks|db|helpers)/)'
|
|
Priority: 1
|
|
- Regex: '^"(leveldb)/'
|
|
Priority: 2
|
|
- Regex: '^(<|"(issues|port|table|third_party|util)/)'
|
|
Priority: 3
|
|
- Regex: '.*'
|
|
Priority: 4
|