Skip to content

rebase#3

Open
GSSparks wants to merge 2 commits intogsparks_updatefrom
main
Open

rebase#3
GSSparks wants to merge 2 commits intogsparks_updatefrom
main

Conversation

@GSSparks
Copy link
Copy Markdown
Owner

No description provided.

@lintinel-bot
Copy link
Copy Markdown

lintinel-bot bot commented Jun 29, 2025

Lintinel Report

Python Linter

Runs flake8 on Python files to enforce PEP8 and linting rules.

  • ✅ No Python files found.

Bash Linter

Checks .sh files for syntax and style issues using shellcheck

  • /tmp/tmppz71z5wp/thumbnail.sh: In /tmp/tmppz71z5wp/thumbnail.sh line 4:
  • /tmp/tmppz71z5wp/thumbnail.sh: for ext in ${FORMATS[@]}; do
  • /tmp/tmppz71z5wp/thumbnail.sh: ^-----------^ SC2068 (error): Double quote array expansions to avoid re-splitting elements.
  • /tmp/tmppz71z5wp/thumbnail.sh:
  • /tmp/tmppz71z5wp/thumbnail.sh:
  • /tmp/tmppz71z5wp/thumbnail.sh: In /tmp/tmppz71z5wp/thumbnail.sh line 28:
  • /tmp/tmppz71z5wp/thumbnail.sh: read TIMESTAMP
  • /tmp/tmppz71z5wp/thumbnail.sh: ^--^ SC2162 (info): read without -r will mangle backslashes.
  • /tmp/tmppz71z5wp/thumbnail.sh:
  • /tmp/tmppz71z5wp/thumbnail.sh:
  • /tmp/tmppz71z5wp/thumbnail.sh: In /tmp/tmppz71z5wp/thumbnail.sh line 47:
  • /tmp/tmppz71z5wp/thumbnail.sh: ffmpeg -hide_banner -loglevel error -i "$file" $TIME $VF -frames:v 1 "${file%%.mp4}"-thumb.jpg
  • /tmp/tmppz71z5wp/thumbnail.sh: ^---^ SC2086 (info): Double quote to prevent globbing and word splitting.
  • /tmp/tmppz71z5wp/thumbnail.sh: ^-^ SC2086 (info): Double quote to prevent globbing and word splitting.
  • /tmp/tmppz71z5wp/thumbnail.sh:
  • /tmp/tmppz71z5wp/thumbnail.sh: Did you mean:
  • /tmp/tmppz71z5wp/thumbnail.sh: ffmpeg -hide_banner -loglevel error -i "$file" "$TIME" "$VF" -frames:v 1 "${file%%.mp4}"-thumb.jpg
  • /tmp/tmppz71z5wp/thumbnail.sh:
  • /tmp/tmppz71z5wp/thumbnail.sh: For more information:
  • /tmp/tmppz71z5wp/thumbnail.sh: https://www.shellcheck.net/wiki/SC2068 -- Double quote array expansions to ...
  • /tmp/tmppz71z5wp/thumbnail.sh: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
  • /tmp/tmppz71z5wp/thumbnail.sh: https://www.shellcheck.net/wiki/SC2162 -- read without -r will mangle backs...

Summary

The linting issues are categorized by the rules violated in the Bash script located at /tmp/tmppz71z5wp/thumbnail.sh.

  1. Rule SC2068: This rule is about array expansions. The issue is that array expansions should be double quoted to avoid re-splitting elements. The violation occurred at line 4 of the script.

  2. Rule SC2162: This rule is related to the 'read' command. The issue is that 'read' without '-r' will mangle backslashes. This violation was found at line 28 of the script.

  3. Rule SC2086: This rule is about word splitting and globbing. The issue is that variables should be double quoted to prevent globbing and word splitting. This violation occurred twice at line 47 of the script.

For the Python Linter, there were no Python files found, hence no linting issues were reported.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant