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
Hey, I really like your project and it looks good to our team. There are some issues though I want to discuss here:
for key, val of someObject doSomethingWith(val)
gives me:
✗ #1: Variable "key" is never read ( first defined on line 1).
Is there an option to ignore this? I know I could write this in another way but it's nice to use the for ... of syntax here.
for ... of
foo() foo = -> return 1
gives:
✗ #1: Undefined identifier "foo". ✗ #3: Variable "foo" is never read ( first defined on line 3).
This cannot be correct because foo is defined within the scope.
foo
describe 'some spec', -> foo = null beforeEach -> foo = 1
✗ #3: Variable "foo" is never read ( first defined on line 3). ✗ #6: Variable "foo" is never read ( first defined on line 3).
Same:
intervalId = setInterval -> clearInterval intervalId , 50
-> Variable "intervalId" is never read
The text was updated successfully, but these errors were encountered:
Thanks for the reports!
To ease communication and tracking, I'm going to split all mentioned issues in separate requests!
Sorry, something went wrong.
No branches or pull requests
Hey, I really like your project and it looks good to our team. There are some issues though I want to discuss here:
1) Loop variables are never read
gives me:
Is there an option to ignore this? I know I could write this in another way but it's nice to use the
for ... of
syntax here.2) Undefined identifier if used before defined
gives:
This cannot be correct because
foo
is defined within the scope.3) Variable never read
gives:
Same:
-> Variable "intervalId" is never read
The text was updated successfully, but these errors were encountered: