loadtest
Version:
Run load tests for your web application. Mostly ab-compatible interface, with an option to force requests per second. Includes an API for automated load testing.
18 lines (16 loc) • 682 B
Plain Text
/**
* JSHint 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": false, // 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
"loopfunc": true, // Allow functions in loops
"undef": true // Force vars declaration before using them
}