diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-11-27 11:08:12 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-11-27 11:10:00 +0100 |
commit | 64c625ccc12d145bc6c638b9a00a88e3adc7900e (patch) | |
tree | 3d5e6f20d183853a6bd258247a2534d99c930e4e | |
parent | 1fd57e5bbf87d1229cf2725f0230755c1d886178 (diff) | |
download | postgresql-64c625ccc12d145bc6c638b9a00a88e3adc7900e.tar.gz postgresql-64c625ccc12d145bc6c638b9a00a88e3adc7900e.zip |
Exclude LLVM files from whitespace checks
Commit 9044fc1d45a added some files from upstream LLVM. These files
have different whitespace rules, which make the git whitespace checks
powered by gitattributes fail. To fix, add those files to the exclude
list.
-rw-r--r-- | .gitattributes | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index f9868677fa2..151a641461a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -26,9 +26,12 @@ src/interfaces/libpq/test/expected.out whitespace=-blank-at-eof # These files are maintained or generated elsewhere. We take them as is. configure -whitespace ppport.h -whitespace +src/backend/jit/llvm/SectionMemoryManager.cpp -whitespace +src/backend/jit/llvm/SectionMemoryManager.LICENSE -whitespace src/backend/regex/COPYRIGHT -whitespace src/backend/regex/re_syntax.n -whitespace src/backend/snowball/libstemmer/*.c -whitespace src/backend/utils/mb/Unicode/*-std.txt -whitespace +src/include/jit/SectionMemoryManager.h -whitespace src/include/snowball/libstemmer/* -whitespace src/timezone/data/* -whitespace |