We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description of the false positive
When calling super in a subclass of TransformStream with a transformer as an argument, CodeQL complains about superfluous trailing arguments.
super
TransformStream
The TransformStream constructor can take multiple arguments, so this report isn't valid.
Code samples or links to source code
https://github.com/zwave-js/node-zwave-js/blob/6b52a22591a0f11628751b2b53a88d5d89f66b6f/packages/serial/src/parsers/BootloaderParsers.ts#L81-L89
export class BootloaderScreenParser extends TransformStream<Uint8Array, number | string> { constructor() { super(new BootloaderScreenParserTransformer()); // BootloaderScreenParserTransformer implements Transformer<Uint8Array, number | string> } }
URL to the alert on GitHub code scanning (optional)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the false positive
When calling
super
in a subclass ofTransformStream
with a transformer as an argument, CodeQL complains about superfluous trailing arguments.The TransformStream constructor can take multiple arguments, so this report isn't valid.
Code samples or links to source code
https://github.com/zwave-js/node-zwave-js/blob/6b52a22591a0f11628751b2b53a88d5d89f66b6f/packages/serial/src/parsers/BootloaderParsers.ts#L81-L89
URL to the alert on GitHub code scanning (optional)
The text was updated successfully, but these errors were encountered: