New review comment by unspecd on void-packages repository https://github.com/void-linux/void-packages/pull/27320#discussion_r547434859 Comment: This seems to be necessary. in `11-pkglint-elf-in-usrshare.sh`: ```sh case "${mime}" in application/x-sharedlib*|\ application/x-pie-executable*|\ application/x-executable*) if [[ ${ignore_elf_files} != *"${file}"* ]]; then matches+=" ${file}" fi ;; ``` Sample *.go file: ```sh $ readelf -h texinfo.go | grep Type Type: DYN (Shared object file) $ file --mime-type texinfo.go texinfo.go: application/x-sharedlib ```