Dear Kate developers, Currently, there is no way in Kate to use the -x switch of Shellcheck. That switch is needed in a lot of cases. VS Code has a way, which is [described after a description about problems people have if they can not use -x](https://unix.stackexchange.com/questions/534688/vs-code-editor-how-to-include-x-switch-for-shellcheck).
For example: a form could be added to choose Shellcheck arguments, or in the "shellcheck.cpp" file (https://invent.kde.org/utilities/kate/-/blob/master/addons/project/tools/shellcheck.cpp can be seen) the line _args << QStringLiteral("--format=gcc"); could be replaced by _args << QStringLiteral("-x") << QStringLiteral("--format=gcc"); and enjoy the "-x" features. Other ways can be thought about. And thanks for Kate!
Hmm, the docs of shellcheck tell me you can just enable that in the default shellcheck config file globally: This option may also be enabled using external-sources=true in .shellcheckrc. This flag takes precedence.
Hi, I think it would make more sense if you just alter the default in .shellcheckrc