summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2021-08-07 04:48:06 -0600
committerAndreas Kling <kling@serenityos.org>2021-08-07 15:36:51 +0200
commit891bc81f309f01a3f7b0b09d5495228ae9dff6d2 (patch)
tree0850ee695b840bb7a76d4d044d0a352431a67b15
parente548c1f489b6c06cc65d9104dea58b2acd75f9a4 (diff)
downloadserenity-891bc81f309f01a3f7b0b09d5495228ae9dff6d2.zip
Meta: Remove syslog.h from clang-format exclusion list
Before Libraries was moved to Userland/Libraries syslog.h had a bunch of manually aligned defines and array initializations. Andreas seems to have formatted the file with clang-format as part of that file move. Since syslog.h is now properly formatted, we don't need to exclude it from the linter list.
-rwxr-xr-xMeta/lint-clang-format.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/Meta/lint-clang-format.sh b/Meta/lint-clang-format.sh
index b1c1a43678..f320fa740c 100755
--- a/Meta/lint-clang-format.sh
+++ b/Meta/lint-clang-format.sh
@@ -12,7 +12,6 @@ if [ "$#" -eq "1" ]; then
'*.h' \
':!:Base' \
':!:Kernel/FileSystem/ext2_fs.h' \
- ':!:Userland/Libraries/LibC/syslog.h' \
':!:Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests/*' \
':!:Userland/Libraries/LibCpp/Tests/*'
)