doc: Remove shebang section

This is already checked by test/lint/lint-files.py

There is no need to reword all linters into the dev notes.

Also, allow scripts in Rust (there are already some).
This commit is contained in:
MarcoFalke
2025-05-20 18:06:44 +02:00
parent faf65f0531
commit 7777fb8bc7
2 changed files with 4 additions and 21 deletions

View File

@@ -26,6 +26,9 @@ ALLOWED_SOURCE_FILENAME_EXCEPTION_REGEXP = (
ALLOWED_PERMISSION_NON_EXECUTABLES = 0o644
ALLOWED_PERMISSION_EXECUTABLES = 0o755
ALLOWED_EXECUTABLE_SHEBANG = {
# https://github.com/dylanaraps/pure-bash-bible#shebang:
# `#!/bin/bash` assumes it is always installed to /bin/ which can cause issues;
# `#!/usr/bin/env bash` searches the user's PATH to find the bash binary.
"py": [b"#!/usr/bin/env python3"],
"sh": [b"#!/usr/bin/env bash", b"#!/bin/sh"],
}