pooled-pg
Version:
A driver to PostgreSQL that is compatible with pg, with more effective pooling strategies.
19 lines (17 loc) • 764 B
Plain Text
/**
* JSHint Mediasmart Configuration File
* See http://jshint.com/docs/ for more details
* Examples at : https://github.com/jshint/jshint/blob/master/examples/.jshintrc
**/
{
"node": true, // NodeJS JavaScript files
"strict": true, // Require "use strict" statement
"white": false, // Check whitespaces between operators
"camelcase": true, // Force camelcase for vars
"curly": true, // Require curly braces in every scope
"unused": true, // Do not allow unused vars
"funcscope": false, // Do not allow using a var out of its virtual scope
"-W065": true, // Do not require radix as we use a safe parseInt
"loopfunc": true, // Allow functions in loops
"undef": true // Force vars declaration before using them
}