We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Bind errors for JS files should be valid errors, we should show them. The following errors i would expect to be flagged:
let C = "sss"; let C = 0; // Error: Cannot redeclare block-scoped variable 'C'. function f() { return; return; // Error: Unreachable code detected. } function b() { "use strict"; var arguments = 0; // Error: Invalid use of 'arguments' in strict mode. }
Bind errors for JS files should be valid errors, we should show them. The following errors i would expect to be flagged: