1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 12:41:46 +00:00

chore: auto format code

This commit is contained in:
Tw93
2026-01-03 06:11:23 +00:00
parent 7415c77bdb
commit 6698099215
2 changed files with 3 additions and 3 deletions

View File

@@ -88,7 +88,7 @@ paginated_multi_select() {
local cursor_pos=0
local top_index=0
local filter_query=""
local filter_mode="false" # filter mode toggle
local filter_mode="false" # filter mode toggle
local sort_mode="${MOLE_MENU_SORT_MODE:-${MOLE_MENU_SORT_DEFAULT:-date}}" # date|name|size
local sort_reverse="${MOLE_MENU_SORT_REVERSE:-false}"
# Live query vs applied query

View File

@@ -67,7 +67,7 @@ if command -v bats > /dev/null 2>&1 && [ -d "tests" ]; then
if [[ "$formatter" == "tap" ]]; then
if $use_color; then
esc=$'\033'
if bats --formatter tap "$@" | \
if bats --formatter tap "$@" |
sed -e "s/^ok /${esc}[32mok ${esc}[0m /" \
-e "s/^not ok /${esc}[31mnot ok ${esc}[0m /"; then
report_unit_result 0
@@ -92,7 +92,7 @@ if command -v bats > /dev/null 2>&1 && [ -d "tests" ]; then
else
if $use_color; then
esc=$'\033'
if bats --tap "$@" | \
if bats --tap "$@" |
sed -e "s/^ok /${esc}[32mok ${esc}[0m /" \
-e "s/^not ok /${esc}[31mnot ok ${esc}[0m /"; then
report_unit_result 0