scripts: Update shellcheck error ignores for password_fill
This commit is contained in:
parent
d8fd61811c
commit
85e1a132bb
|
|
@ -143,7 +143,7 @@ no_entries_found() {
|
||||||
# expected to write the username of that entry to the $username variable and
|
# expected to write the username of that entry to the $username variable and
|
||||||
# the corresponding password to $password
|
# the corresponding password to $password
|
||||||
|
|
||||||
# shellcheck disable=SC2317
|
# shellcheck disable=SC2329
|
||||||
reset_backend() {
|
reset_backend() {
|
||||||
init() { true ; }
|
init() { true ; }
|
||||||
query_entries() { true ; }
|
query_entries() { true ; }
|
||||||
|
|
@ -199,7 +199,8 @@ choose_entry_zenity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
choose_entry_zenity_radio() {
|
choose_entry_zenity_radio() {
|
||||||
zenity_helper() { # shellcheck disable=SC2317
|
# shellcheck disable=SC2329
|
||||||
|
zenity_helper() {
|
||||||
awk '{ print $0 ; print $0 }' \
|
awk '{ print $0 ; print $0 }' \
|
||||||
| zenity --list --radiolist \
|
| zenity --list --radiolist \
|
||||||
--title "qutebrowser password fill" \
|
--title "qutebrowser password fill" \
|
||||||
|
|
@ -279,7 +280,7 @@ pass_backend() {
|
||||||
|
|
||||||
# =======================================================
|
# =======================================================
|
||||||
# backend: secret
|
# backend: secret
|
||||||
# shellcheck disable=SC2317
|
# shellcheck disable=SC2329
|
||||||
secret_backend() {
|
secret_backend() {
|
||||||
init() {
|
init() {
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue