Giter Site home page Giter Site logo

Comments (9)

devinus avatar devinus commented on July 28, 2024

This is easy. All you have to do is drop the var:

function test(foo) {
    foo = foo || false;
}

I seriously don't think this needs to be looked at.

from jshint.

davebalmer avatar davebalmer commented on July 28, 2024

Sure, it looks like a simple solution in this 2 line example, but there's actually nothing wrong with using var in this case. I see no reason why this checking can't be turned off, especially when JSure supports this option.

I'm pretty sure we don't want to make another jslint. :)

from jshint.

valueof avatar valueof commented on July 28, 2024

Why did you close the issue? Since re-declaring variables does not break any code, I don't see why can't we make it an option.

from jshint.

devinus avatar devinus commented on July 28, 2024

Oops, who closed it? I certainly didn't mean to if it was me, those damn buttons are too close to each other. I apologize if it was me.

from jshint.

GarrettS avatar GarrettS commented on July 28, 2024

I agrtee with devinus about the buttons I've almost clicked that "comment and close " myself. Odd, I only see "comment" now.

And about redeclaring, I also agree that it's better to omit var.

The warning helps because redeclaring a variable is usually a mistake. The one good reason I can think of for wanting to redeclare a variable is only for global scope. The case I am thinking of is where the identifier is declared and may be conditionally assigned but the declaration happens inside the if's block. But I think there is already a separate issue for that.

if(typeof Hammer != "object") {
  var Hammer = {};
}

from jshint.

davebalmer avatar davebalmer commented on July 28, 2024

I can't think of a case where I accidentally re-declared a variable. In any case, I don't see where having the option to turn this off is a bad thing. Make it default to "on", that's fine.

And yes, your global case is a very valid yet different use case, and probably shouldn't be lumped in with this one.

While we're on it, I have cases where I look for console and if it doesn't exist, I add a stubbed out console.log(). This isn't an uncommon practice, especially with code that's in development or with internal tools. Right now, it throws an "attempted to replace read-only" error.

While we're on that tangent, one nice feature with JSure is you can set error checking flags to "off", "error" or "warn". The significance of that really shows up when you use a tool like this in an automated build environment, where throwing an error will stop the build, rather than just alert the developer that there may be a problem.

Oh, and I may have accidentally closed this myself. Those buttons are way to close; I just caught my mouse hovering over "Comment and Close". :)

from jshint.

neonstalwart avatar neonstalwart commented on July 28, 2024

is this issue a duplicate of #14

from jshint.

davebalmer avatar davebalmer commented on July 28, 2024

Similar, but not a duplicate. At least, seems to throw a different error.

from jshint.

valueof avatar valueof commented on July 28, 2024

Implemented in master as an opt-in shadow option.

from jshint.

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.