ssube/salty-dog

View on GitHub

Showing 28 of 28 total issues

Function parseArgs has 151 lines of code (exceeds 30 allowed). Consider refactoring.
Open

export async function parseArgs(argv: Array<string>): Promise<ParseResults> {
  let mode: MODE = MODE.check;

  const parser = yargs(argv)
    .usage('Usage: salty-dog <mode> [options]')
Severity: Major
Found in src/config/args.ts - About 5 hrs to fix

    Function main has 66 lines of code (exceeds 30 allowed). Consider refactoring.
    Open

    export async function main(argv: Array<string>): Promise<number> {
      const { args, mode } = await parseArgs(argv.slice(ARGS_START));
      if (mode === MODE.complete) {
        yargs(argv).showCompletionScript();
        return STATUS_SUCCESS;
    Severity: Major
    Found in src/app.ts - About 2 hrs to fix

      Function printTable has 38 lines of code (exceeds 30 allowed). Consider refactoring.
      Open

      export function printTable<T>(rows: Array<T>, fields: Array<keyof T>, options: TableOptions): string {
        const cols = new Map<keyof T, Array<string>>();
      
        // add headers
        for (const field of fields) {
      Severity: Minor
      Found in src/reporter/TableReporter.ts - About 1 hr to fix

        Function listFiles has a Cognitive Complexity of 9 (exceeds 6 allowed). Consider refactoring.
        Open

        export async function listFiles(path: string): Promise<Array<string>> {
          const dirs: Array<string> = [path];
          const files: Array<string> = [];
        
          while (dirs.length > 0) {
        Severity: Minor
        Found in src/source.ts - About 45 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function printTable has a Cognitive Complexity of 9 (exceeds 6 allowed). Consider refactoring.
        Open

        export function printTable<T>(rows: Array<T>, fields: Array<keyof T>, options: TableOptions): string {
          const cols = new Map<keyof T, Array<string>>();
        
          // add headers
          for (const field of fields) {
        Severity: Minor
        Found in src/reporter/TableReporter.ts - About 45 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function loadRuleModules has a Cognitive Complexity of 9 (exceeds 6 allowed). Consider refactoring.
        Open

        export async function loadRuleModules(modules: Array<string>, ctx: VisitorContext, load?: LoadBack): Promise<Array<Rule>> {
          const rules = [];
        
          for (const name of modules) {
            try {
        Severity: Minor
        Found in src/rule/load.ts - About 45 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function main has a Cognitive Complexity of 8 (exceeds 6 allowed). Consider refactoring.
        Open

        export async function main(argv: Array<string>): Promise<number> {
          const { args, mode } = await parseArgs(argv.slice(ARGS_START));
          if (mode === MODE.complete) {
            yargs(argv).showCompletionScript();
            return STATUS_SUCCESS;
        Severity: Minor
        Found in src/app.ts - About 35 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Avoid too many return statements within this function.
        Open

            return Math.min(ctx.errors.length, STATUS_MAX);
        Severity: Major
        Found in src/app.ts - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

            return STATUS_ERROR;
          Severity: Major
          Found in src/app.ts - About 30 mins to fix

            read without -r will mangle backslashes.
            Open

              read -e MESSAGE_BODY
            Severity: Minor
            Found in scripts/git-commit-template.sh by shellcheck

            read without -r mangle backslashes

            Problematic code:

            echo "Enter name:"
            read name

            Correct code:

            echo "Enter name:"
            read -r name

            Rationale:

            By default, read will interpret backslashes before spaces and line feeds, and otherwise strip them. This is rarely expected or desired.

            Normally you just want to read data, which is what read -r does. You should always use -r unless you have a good reason not to.

            Note that read -r will still strip leading and trailing spaces. IFS="" read -r prevents this.

            Exceptions:

            If you want backslashes to affect field splitting and line terminators instead of being read, you can disable this message with a [[directive]].

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            Double quote to prevent globbing and word splitting.
            Open

                2> ${STDERR_PATH}
            Severity: Minor
            Found in scripts/test-examples.sh by shellcheck

            Double quote to prevent globbing and word splitting.

            Problematic code:

            echo $1
            for i in $*; do :; done # this done and the next one also applies to expanding arrays.
            for i in $@; do :; done

            Correct code:

            echo "$1"
            for i in "$@"; do :; done # or, 'for i; do'

            Rationale

            The first code looks like "print the first argument". It's actually "Split the first argument by IFS (spaces, tabs and line feeds). Expand each of them as if it was a glob. Join all the resulting strings and filenames with spaces. Print the result."

            The second one looks like "iterate through all arguments". It's actually "join all the arguments by the first character of IFS (space), split them by IFS and expand each of them as globs, and iterate on the resulting list". The third one skips the joining part.

            Quoting variables prevents word splitting and glob expansion, and prevents the script from breaking when input contains spaces, line feeds, glob characters and such.

            Strictly speaking, only expansions themselves need to be quoted, but for stylistic reasons, entire arguments with multiple variable and literal parts are often quoted as one:

            $HOME/$dir/dist/bin/$file        # Unquoted (bad)
            "$HOME"/"$dir"/dist/bin/"$file"  # Minimal quoting (good)
            "$HOME/$dir/dist/bin/$file"      # Canonical quoting (good)

            When quoting composite arguments, make sure to exclude globs and brace expansions, which lose their special meaning in double quotes: "$HOME/$dir/src/*.c" will not expand, but "$HOME/$dir/src"/*.c will.

            Note that $( ) starts a new context, and variables in it have to be quoted independently:

            echo "This $variable is quoted $(but this $variable is not)"
            echo "This $variable is quoted $(and now this "$variable" is too)"

            Exceptions

            Sometimes you want to split on spaces, like when building a command line:

            options="-j 5 -B"
            make $options file

            Just quoting this doesn't work. Instead, you should have used an array (bash, ksh, zsh):

            options=(-j 5 -B) # ksh: set -A options -- -j 5 -B
            make "${options[@]}" file

            or a function (POSIX):

            make_with_flags() { make -j 5 -B "$@"; }
            make_with_flags file

            To split on spaces but not perform glob expansion, Posix has a set -f to disable globbing. You can disable word splitting by setting IFS=''.

            Similarly, you might want an optional argument:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="-x"
            bash $debug script

            Quoting this doesn't work, since in the default case, "$debug" would expand to one empty argument while $debug would expand into zero arguments. In this case, you can use an array with zero or one elements as outlined above, or you can use an unquoted expansion with an alternate value:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="yes"
            bash ${debug:+"-x"} script

            This is better than an unquoted value because the alternative value can be properly quoted, e.g. wget ${output:+ -o "$output"}.


            As always, this warning can be [[ignore]]d on a case-by-case basis.

            this is especially relevant when BASH many not be available for the array work around. For example, use in eval or in command options where script has total control of the variables...

            FLAGS="-av -e 'ssh -x' --delete --delete-excluded"
            ...
            # shellcheck disable=SC2086
            eval rsync $FLAGS ~/dir remote_host:dir

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            MESSAGE_SOURCE appears unused. Verify it or export it.
            Open

            MESSAGE_SOURCE="$2"
            Severity: Minor
            Found in scripts/git-commit-template.sh by shellcheck

            foo appears unused. Verify it or export it.

            Problematic code:

            foo=42
            echo "$FOO"

            Correct code:

            foo=42
            echo "$foo"

            Rationale:

            Variables not used for anything are often associated with bugs, so ShellCheck warns about them.

            Also note that something like local let foo=42 does not make a let statement local -- it instead declares an additional local variable named let.

            Exceptions

            ShellCheck may not always realize that the variable is in use (especially with indirection), and may not realize you don't care (with throwaway variables or unimplemented features).

            For throwaway variables, consider using _ as a dummy:

            read _ last _ zip _ _ <<< "$str"
            echo "$last, $zip"

            or use a directive to disable the warning:

            # shellcheck disable=SC2034
            read first last email zip lat lng <<< "$str"
            echo "$last, $zip"

            For indirection, there's not much you can do without rewriting to use arrays or similar:

            bar=42  # will always appear unused
            foo=bar
            echo "${!foo}"

            This is expected behavior, and not a bug. There is no good way to statically analyze indirection in shell scripts, just like static C analyzers have a hard time preventing segfaults.

            As always, there are ways to [[ignore]] this and other messages if they frequently get in your way.

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            Double quote to prevent globbing and word splitting.
            Open

                1> ${STDOUT_PATH} \
            Severity: Minor
            Found in scripts/test-examples.sh by shellcheck

            Double quote to prevent globbing and word splitting.

            Problematic code:

            echo $1
            for i in $*; do :; done # this done and the next one also applies to expanding arrays.
            for i in $@; do :; done

            Correct code:

            echo "$1"
            for i in "$@"; do :; done # or, 'for i; do'

            Rationale

            The first code looks like "print the first argument". It's actually "Split the first argument by IFS (spaces, tabs and line feeds). Expand each of them as if it was a glob. Join all the resulting strings and filenames with spaces. Print the result."

            The second one looks like "iterate through all arguments". It's actually "join all the arguments by the first character of IFS (space), split them by IFS and expand each of them as globs, and iterate on the resulting list". The third one skips the joining part.

            Quoting variables prevents word splitting and glob expansion, and prevents the script from breaking when input contains spaces, line feeds, glob characters and such.

            Strictly speaking, only expansions themselves need to be quoted, but for stylistic reasons, entire arguments with multiple variable and literal parts are often quoted as one:

            $HOME/$dir/dist/bin/$file        # Unquoted (bad)
            "$HOME"/"$dir"/dist/bin/"$file"  # Minimal quoting (good)
            "$HOME/$dir/dist/bin/$file"      # Canonical quoting (good)

            When quoting composite arguments, make sure to exclude globs and brace expansions, which lose their special meaning in double quotes: "$HOME/$dir/src/*.c" will not expand, but "$HOME/$dir/src"/*.c will.

            Note that $( ) starts a new context, and variables in it have to be quoted independently:

            echo "This $variable is quoted $(but this $variable is not)"
            echo "This $variable is quoted $(and now this "$variable" is too)"

            Exceptions

            Sometimes you want to split on spaces, like when building a command line:

            options="-j 5 -B"
            make $options file

            Just quoting this doesn't work. Instead, you should have used an array (bash, ksh, zsh):

            options=(-j 5 -B) # ksh: set -A options -- -j 5 -B
            make "${options[@]}" file

            or a function (POSIX):

            make_with_flags() { make -j 5 -B "$@"; }
            make_with_flags file

            To split on spaces but not perform glob expansion, Posix has a set -f to disable globbing. You can disable word splitting by setting IFS=''.

            Similarly, you might want an optional argument:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="-x"
            bash $debug script

            Quoting this doesn't work, since in the default case, "$debug" would expand to one empty argument while $debug would expand into zero arguments. In this case, you can use an array with zero or one elements as outlined above, or you can use an unquoted expansion with an alternate value:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="yes"
            bash ${debug:+"-x"} script

            This is better than an unquoted value because the alternative value can be properly quoted, e.g. wget ${output:+ -o "$output"}.


            As always, this warning can be [[ignore]]d on a case-by-case basis.

            this is especially relevant when BASH many not be available for the array work around. For example, use in eval or in command options where script has total control of the variables...

            FLAGS="-av -e 'ssh -x' --delete --delete-excluded"
            ...
            # shellcheck disable=SC2086
            eval rsync $FLAGS ~/dir remote_host:dir

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            This : will be a regular ':' in this context.
            Open

            if [[ "${MESSAGE_BODY}" =~ [a-z]+\([a-z\/]+\)\:[\ ]+[-a-zA-Z0-9\.\(\)]+ ]];
            Severity: Minor
            Found in scripts/git-commit-template.sh by shellcheck

            This \o will be a regular 'o' in this context.

            Problematic code:

            # Want literal backslash
            echo Yay \o/
            
            # Want linefeed
            greeting=Hello\nWorld
            
            # Want other characters
            carriagereturn=\r

            Correct code:

            echo 'Yay \o/'
            
            greeting='Hello
            World'
            
            carriagereturn=$(printf '\r')

            Rationale:

            You have escaped something that has no special meaning when escaped. The backslash will be simply be ignored.

            If the backslash was supposed to be literal, single quote or escape it.

            If you wanted it to expand to something, rewrite the expression. For linefeeds (\n), put them literally in quotes. For other characters, use POSIX printf or bash/ksh $'...'.

            Exceptions

            None. ShellCheck (as of 2017-07-03, commit 31bb02d6) will not warn when the first letter of a command is unnecessarily escaped, as this is frequently used to suppress aliases interactively.

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            Double quote to prevent globbing and word splitting.
            Open

              if [ -s ${STDERR_PATH} ];
            Severity: Minor
            Found in scripts/test-examples.sh by shellcheck

            Double quote to prevent globbing and word splitting.

            Problematic code:

            echo $1
            for i in $*; do :; done # this done and the next one also applies to expanding arrays.
            for i in $@; do :; done

            Correct code:

            echo "$1"
            for i in "$@"; do :; done # or, 'for i; do'

            Rationale

            The first code looks like "print the first argument". It's actually "Split the first argument by IFS (spaces, tabs and line feeds). Expand each of them as if it was a glob. Join all the resulting strings and filenames with spaces. Print the result."

            The second one looks like "iterate through all arguments". It's actually "join all the arguments by the first character of IFS (space), split them by IFS and expand each of them as globs, and iterate on the resulting list". The third one skips the joining part.

            Quoting variables prevents word splitting and glob expansion, and prevents the script from breaking when input contains spaces, line feeds, glob characters and such.

            Strictly speaking, only expansions themselves need to be quoted, but for stylistic reasons, entire arguments with multiple variable and literal parts are often quoted as one:

            $HOME/$dir/dist/bin/$file        # Unquoted (bad)
            "$HOME"/"$dir"/dist/bin/"$file"  # Minimal quoting (good)
            "$HOME/$dir/dist/bin/$file"      # Canonical quoting (good)

            When quoting composite arguments, make sure to exclude globs and brace expansions, which lose their special meaning in double quotes: "$HOME/$dir/src/*.c" will not expand, but "$HOME/$dir/src"/*.c will.

            Note that $( ) starts a new context, and variables in it have to be quoted independently:

            echo "This $variable is quoted $(but this $variable is not)"
            echo "This $variable is quoted $(and now this "$variable" is too)"

            Exceptions

            Sometimes you want to split on spaces, like when building a command line:

            options="-j 5 -B"
            make $options file

            Just quoting this doesn't work. Instead, you should have used an array (bash, ksh, zsh):

            options=(-j 5 -B) # ksh: set -A options -- -j 5 -B
            make "${options[@]}" file

            or a function (POSIX):

            make_with_flags() { make -j 5 -B "$@"; }
            make_with_flags file

            To split on spaces but not perform glob expansion, Posix has a set -f to disable globbing. You can disable word splitting by setting IFS=''.

            Similarly, you might want an optional argument:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="-x"
            bash $debug script

            Quoting this doesn't work, since in the default case, "$debug" would expand to one empty argument while $debug would expand into zero arguments. In this case, you can use an array with zero or one elements as outlined above, or you can use an unquoted expansion with an alternate value:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="yes"
            bash ${debug:+"-x"} script

            This is better than an unquoted value because the alternative value can be properly quoted, e.g. wget ${output:+ -o "$output"}.


            As always, this warning can be [[ignore]]d on a case-by-case basis.

            this is especially relevant when BASH many not be available for the array work around. For example, use in eval or in command options where script has total control of the variables...

            FLAGS="-av -e 'ssh -x' --delete --delete-excluded"
            ...
            # shellcheck disable=SC2086
            eval rsync $FLAGS ~/dir remote_host:dir

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            Double quote to prevent globbing and word splitting.
            Open

              MESSAGE_BODY="$(cat ${MESSAGE_FILE})"
            Severity: Minor
            Found in scripts/git-commit-template.sh by shellcheck

            Double quote to prevent globbing and word splitting.

            Problematic code:

            echo $1
            for i in $*; do :; done # this done and the next one also applies to expanding arrays.
            for i in $@; do :; done

            Correct code:

            echo "$1"
            for i in "$@"; do :; done # or, 'for i; do'

            Rationale

            The first code looks like "print the first argument". It's actually "Split the first argument by IFS (spaces, tabs and line feeds). Expand each of them as if it was a glob. Join all the resulting strings and filenames with spaces. Print the result."

            The second one looks like "iterate through all arguments". It's actually "join all the arguments by the first character of IFS (space), split them by IFS and expand each of them as globs, and iterate on the resulting list". The third one skips the joining part.

            Quoting variables prevents word splitting and glob expansion, and prevents the script from breaking when input contains spaces, line feeds, glob characters and such.

            Strictly speaking, only expansions themselves need to be quoted, but for stylistic reasons, entire arguments with multiple variable and literal parts are often quoted as one:

            $HOME/$dir/dist/bin/$file        # Unquoted (bad)
            "$HOME"/"$dir"/dist/bin/"$file"  # Minimal quoting (good)
            "$HOME/$dir/dist/bin/$file"      # Canonical quoting (good)

            When quoting composite arguments, make sure to exclude globs and brace expansions, which lose their special meaning in double quotes: "$HOME/$dir/src/*.c" will not expand, but "$HOME/$dir/src"/*.c will.

            Note that $( ) starts a new context, and variables in it have to be quoted independently:

            echo "This $variable is quoted $(but this $variable is not)"
            echo "This $variable is quoted $(and now this "$variable" is too)"

            Exceptions

            Sometimes you want to split on spaces, like when building a command line:

            options="-j 5 -B"
            make $options file

            Just quoting this doesn't work. Instead, you should have used an array (bash, ksh, zsh):

            options=(-j 5 -B) # ksh: set -A options -- -j 5 -B
            make "${options[@]}" file

            or a function (POSIX):

            make_with_flags() { make -j 5 -B "$@"; }
            make_with_flags file

            To split on spaces but not perform glob expansion, Posix has a set -f to disable globbing. You can disable word splitting by setting IFS=''.

            Similarly, you might want an optional argument:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="-x"
            bash $debug script

            Quoting this doesn't work, since in the default case, "$debug" would expand to one empty argument while $debug would expand into zero arguments. In this case, you can use an array with zero or one elements as outlined above, or you can use an unquoted expansion with an alternate value:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="yes"
            bash ${debug:+"-x"} script

            This is better than an unquoted value because the alternative value can be properly quoted, e.g. wget ${output:+ -o "$output"}.


            As always, this warning can be [[ignore]]d on a case-by-case basis.

            this is especially relevant when BASH many not be available for the array work around. For example, use in eval or in command options where script has total control of the variables...

            FLAGS="-av -e 'ssh -x' --delete --delete-excluded"
            ...
            # shellcheck disable=SC2086
            eval rsync $FLAGS ~/dir remote_host:dir

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            This \/ will be a regular '/' in this context.
            Open

            if [[ "${MESSAGE_BODY}" =~ [a-z]+\([a-z\/]+\)\:[\ ]+[-a-zA-Z0-9\.\(\)]+ ]];
            Severity: Minor
            Found in scripts/git-commit-template.sh by shellcheck

            This \o will be a regular 'o' in this context.

            Problematic code:

            # Want literal backslash
            echo Yay \o/
            
            # Want linefeed
            greeting=Hello\nWorld
            
            # Want other characters
            carriagereturn=\r

            Correct code:

            echo 'Yay \o/'
            
            greeting='Hello
            World'
            
            carriagereturn=$(printf '\r')

            Rationale:

            You have escaped something that has no special meaning when escaped. The backslash will be simply be ignored.

            If the backslash was supposed to be literal, single quote or escape it.

            If you wanted it to expand to something, rewrite the expression. For linefeeds (\n), put them literally in quotes. For other characters, use POSIX printf or bash/ksh $'...'.

            Exceptions

            None. ShellCheck (as of 2017-07-03, commit 31bb02d6) will not warn when the first letter of a command is unnecessarily escaped, as this is frequently used to suppress aliases interactively.

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            This : will be a regular ':' in this context.
            Open

            elif [[ "${MESSAGE_BODY}" =~ [a-z]+(\(\))*\:[\ ]+[-a-zA-Z0-9\.\(\)]+ ]];
            Severity: Minor
            Found in scripts/git-commit-template.sh by shellcheck

            This \o will be a regular 'o' in this context.

            Problematic code:

            # Want literal backslash
            echo Yay \o/
            
            # Want linefeed
            greeting=Hello\nWorld
            
            # Want other characters
            carriagereturn=\r

            Correct code:

            echo 'Yay \o/'
            
            greeting='Hello
            World'
            
            carriagereturn=$(printf '\r')

            Rationale:

            You have escaped something that has no special meaning when escaped. The backslash will be simply be ignored.

            If the backslash was supposed to be literal, single quote or escape it.

            If you wanted it to expand to something, rewrite the expression. For linefeeds (\n), put them literally in quotes. For other characters, use POSIX printf or bash/ksh $'...'.

            Exceptions

            None. ShellCheck (as of 2017-07-03, commit 31bb02d6) will not warn when the first letter of a command is unnecessarily escaped, as this is frequently used to suppress aliases interactively.

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            Double quote to prevent globbing and word splitting.
            Open

              if [ -s ${STDOUT_PATH} ];
            Severity: Minor
            Found in scripts/test-examples.sh by shellcheck

            Double quote to prevent globbing and word splitting.

            Problematic code:

            echo $1
            for i in $*; do :; done # this done and the next one also applies to expanding arrays.
            for i in $@; do :; done

            Correct code:

            echo "$1"
            for i in "$@"; do :; done # or, 'for i; do'

            Rationale

            The first code looks like "print the first argument". It's actually "Split the first argument by IFS (spaces, tabs and line feeds). Expand each of them as if it was a glob. Join all the resulting strings and filenames with spaces. Print the result."

            The second one looks like "iterate through all arguments". It's actually "join all the arguments by the first character of IFS (space), split them by IFS and expand each of them as globs, and iterate on the resulting list". The third one skips the joining part.

            Quoting variables prevents word splitting and glob expansion, and prevents the script from breaking when input contains spaces, line feeds, glob characters and such.

            Strictly speaking, only expansions themselves need to be quoted, but for stylistic reasons, entire arguments with multiple variable and literal parts are often quoted as one:

            $HOME/$dir/dist/bin/$file        # Unquoted (bad)
            "$HOME"/"$dir"/dist/bin/"$file"  # Minimal quoting (good)
            "$HOME/$dir/dist/bin/$file"      # Canonical quoting (good)

            When quoting composite arguments, make sure to exclude globs and brace expansions, which lose their special meaning in double quotes: "$HOME/$dir/src/*.c" will not expand, but "$HOME/$dir/src"/*.c will.

            Note that $( ) starts a new context, and variables in it have to be quoted independently:

            echo "This $variable is quoted $(but this $variable is not)"
            echo "This $variable is quoted $(and now this "$variable" is too)"

            Exceptions

            Sometimes you want to split on spaces, like when building a command line:

            options="-j 5 -B"
            make $options file

            Just quoting this doesn't work. Instead, you should have used an array (bash, ksh, zsh):

            options=(-j 5 -B) # ksh: set -A options -- -j 5 -B
            make "${options[@]}" file

            or a function (POSIX):

            make_with_flags() { make -j 5 -B "$@"; }
            make_with_flags file

            To split on spaces but not perform glob expansion, Posix has a set -f to disable globbing. You can disable word splitting by setting IFS=''.

            Similarly, you might want an optional argument:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="-x"
            bash $debug script

            Quoting this doesn't work, since in the default case, "$debug" would expand to one empty argument while $debug would expand into zero arguments. In this case, you can use an array with zero or one elements as outlined above, or you can use an unquoted expansion with an alternate value:

            debug=""
            [[ $1 == "--trace-commands" ]] && debug="yes"
            bash ${debug:+"-x"} script

            This is better than an unquoted value because the alternative value can be properly quoted, e.g. wget ${output:+ -o "$output"}.


            As always, this warning can be [[ignore]]d on a case-by-case basis.

            this is especially relevant when BASH many not be available for the array work around. For example, use in eval or in command options where script has total control of the variables...

            FLAGS="-av -e 'ssh -x' --delete --delete-excluded"
            ...
            # shellcheck disable=SC2086
            eval rsync $FLAGS ~/dir remote_host:dir

            Notice

            Original content from the ShellCheck https://github.com/koalaman/shellcheck/wiki.

            TODO found
            Open

            # TODO: combine shared prefixes (src/foo/bar and src/foo/bin share src/foo)
            Severity: Minor
            Found in scripts/git-commit-template.sh by fixme
            Severity
            Category
            Status
            Source
            Language