I'm running jshint on a javascript file, and some of the functions have dots in their names (as a way of namespacing). In particular, I'm using the d3 library, and I have a lot of code that looks like
d3.select("something")
Do I just need to turn off jshint's checking of using undefined variables? Or is there a way to suppress just certain variable names from being checked. I'm using grunt to build the project.