Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ignore SC2002 for IMHO stylistic concern -- here it is useful sin…
…ce long line shellcheck was complaining In contrib/messages_json_parsing/jq/find_matches_print_dates_and_text.sh line 5: cat "${SAMPLE}" | jq '.messages[] | select(( .text != null) and (.text | test("JoInEd";"i"))) | (.ts |= (tonumber|todate)) | .ts, .text' | tr -d '"' ^---------^ SC2002 (style): Useless cat. Consider 'cmd < file | ..' or 'cmd file | ..' instead. In contrib/messages_json_parsing/jq/print_messages.sh line 5: cat "${SAMPLE}" | jq '.messages[]|.user +": "+.text' | tr -d '"' ^---------^ SC2002 (style): Useless cat. Consider 'cmd < file | ..' or 'cmd file | ..' instead.
- Loading branch information