1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:58:12 +00:00

Meta: check-newlines-at-eof.py now checks .json files and files in Base/

This makes it also check man pages and keymap files. :^)
This commit is contained in:
Emanuele Torre 2021-03-08 00:24:05 +01:00 committed by Andreas Kling
parent dd17ec180f
commit 26c4cae77c

View file

@ -17,9 +17,10 @@ files = subprocess.run(
"*.css", "*.css",
"*.sh", "*.sh",
"*.py", "*.py",
"*.json",
"CMake*.txt", "CMake*.txt",
"**/CMake*.txt", "**/CMake*.txt",
":!:Base", ":!:AK/Tests/*.json",
":!:Kernel/FileSystem/ext2_fs.h", ":!:Kernel/FileSystem/ext2_fs.h",
":!:Userland/Libraries/LibELF/exec_elf.h" ":!:Userland/Libraries/LibELF/exec_elf.h"
], ],