Richard Bairwell
Richard Bairwell
Appears to be a duplicate of https://github.com/koalaman/shellcheck/issues/817 (yep, I came to report the same annoyance...)
I would like this functionality as well - especially for integration with editors/IDEs (Visual Studio Code/VSCode is my current preference). It automatically runs shellcheck on all my shell files -...
Just coming in to say that I'm encountering this as well. * Rule ID: SC2120 and SC2119 * online Example code: ``` #!/usr/bin/bash fn() { [[ "$#" -lt 1 ]]...
> There is some logic in excluding `$#`, but empirically it appears to be pretty rare to check it without then using `$@` or `$1` based on the result. Is...
At what point should the rate limiting kick in? If it is before email verification then spammers (which we are bound to get) could block signups: if after people will...
I've just tested the following: ```bash #!/usr/bin/env bash # file: myProject.sh declare -r VAR1="example" ``` and the test file with 3 different ways of testing: ```bats #!/usr/bin/env bats # file:...
This is still a problem: ```bash #!/usr/bin/env bash # Problem message on next line: Syntax error: expected "word" somewhere in the file" if ! current_directory=$(pwd); then printf "FAILLD with code...
I'm against this as I don't like unpredictability and having a not having a nice consistent chronological timeline is one of the things I really disliked about the bird site.
Yep, I feel this is already supported by third party apps such as Tusky (Android), https://thedesk.top and many others (some of which are listed on https://joinmastodon.org/apps ). I can't really...
Ah, those [Mojibake](https://en.wikipedia.org/wiki/Mojibake) characters are (as you rightly pointed out) are a Paragraph Separator ([PSEP](https://www.fileformat.info/info/unicode/char/2029/index.htm)) and Line Separator ([LSEP](https://www.fileformat.info/info/unicode/char/2028/index.htm)) - as the "solution" to the conflicting line breaks across multiple...