14 lines
534 B
Plaintext
14 lines
534 B
Plaintext
# ShellCheck configuration for OpenClaw on Android
|
|
# Termux 환경에서 실행되는 Shell Script를 위한 설정
|
|
|
|
# Default shell dialect
|
|
shell=bash
|
|
|
|
# Enable following sourced files
|
|
external-sources=true
|
|
|
|
# SC2155: Declare and assign separately — Termux 스크립트에서 자주 사용하는 패턴
|
|
# SC1091: Not following sourced file — source 대상이 런타임에만 존재 (Termux $PREFIX 등)
|
|
# SC2034: Variable appears unused — lib.sh에서 정의하고 다른 스크립트에서 사용
|
|
disable=SC2155,SC1091,SC2034
|