diff options
author | Andrew Kaster <akaster@serenityos.org> | 2021-08-07 04:48:06 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-07 15:36:51 +0200 |
commit | 891bc81f309f01a3f7b0b09d5495228ae9dff6d2 (patch) | |
tree | 0850ee695b840bb7a76d4d044d0a352431a67b15 /Meta/lint-clang-format.sh | |
parent | e548c1f489b6c06cc65d9104dea58b2acd75f9a4 (diff) | |
download | serenity-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.
Diffstat (limited to 'Meta/lint-clang-format.sh')
-rwxr-xr-x | Meta/lint-clang-format.sh | 1 |
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/*' ) |