Coder Social home page Coder Social logo

Comments (6)

clutchski avatar clutchski commented on June 14, 2024

Already reported in issue #20, but you're definitely correct. Thanks for the feedback.

from coffeelint.

juanique avatar juanique commented on June 14, 2024

Can I still comment if the issue is closed?

I just want to point out hat issue #20 is about undefined variables, while this issue is about unused variables.

Example

myFunc = ->
    language = "coffee"
    checkWithLint = true

    return language

The variable checkWithLint is well defined, but is not used. Since the scope of the variable ends with the function definition, there is no way that the variable could be referenced from somewhere else, hence the assignment is unnecessary.

from coffeelint.

swang avatar swang commented on June 14, 2024

I know this is an old ticket, so this may not get noticed. What should coffeelint spit out for this?

myFunc = ->
   useThis = "useThis"
   useThat = "useThat"
   if Math.floor(Math.random()*100) % 2 is 0
      useThat
   else
      useThis

Should it not give any warnings/errors because all variables are mentioned somewhere in the function?

Also should functions be ignored? What about functions in 'global' space (like functions you would define in a module)?

from coffeelint.

AsaAyers avatar AsaAyers commented on June 14, 2024

The warning about undefined variables has not been implemented. I attempted it, but ran into complications with destructuring assignments.

If it were implemented it should not warn about that code.

from coffeelint.

joelbarker2011 avatar joelbarker2011 commented on June 14, 2024

Not sure why this issue was closed; it is definitely (still) a problem.

from coffeelint.

AsaAyers avatar AsaAyers commented on June 14, 2024

It's closed because it's not going to get implemented. See #20 (comment)

I also recommend reading my post: You Don't Need CoffeeScript

from coffeelint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.