While running jshint on a JavaScript file, I encountered functions with dots in their names for namespacing purposes. Specifically, within the d3 library, there is a significant portion of code that resembles:
d3.select("something")
Should I simply disable jshint's validation of undefined variables? Or is there a method to selectively suppress checks for specific variable names? This project utilizes grunt for building.