Some pep8 inspections can be disabled at line-level using comment:
# noqa
Disableable error codes (marked with ^) can be found at: https://pep8.readthedocs.io/en/release-1.7.x/intro.html#error-codes
Some pep8 inspections can be disabled at line-level using comment:
# noqa
Disableable error codes (marked with ^) can be found at: https://pep8.readthedocs.io/en/release-1.7.x/intro.html#error-codes
| #!/bin/bash | |
| # ----------------------------------------------------------------------------- | |
| # es7s/core (shared code) | |
| # (C) 2021-2022 A. Shavykin <[email protected]> | |
| # ----------------------------------------------------------------------------- | |
| # shellcheck disable=SC2059 | |
| # shellcheck disable=SC2120 | |
| # ----------------------------------------------------------------------------- | |
| if [[ -n "${ES7S_DEBUG:-}" ]] ; then | |
| printf "$(basename "${BASH_SOURCE[-1]^^}") %s\n" \ |