Browse Source

Relaxing JSHint options for "too many parameters" Not sure the best way to handle this for option parameters, such as options

feature/specify-what-to-cache
Sean Cady 10 years ago
parent
commit
6249034237
  1. 1
      lib/caching.js
  2. 2
      lib/multi_caching.js
  3. 2
      test/stores/options.unit.js

1
lib/caching.js

@ -1,4 +1,5 @@
/*jshint maxcomplexity:15*/
/*jshint -W072 */
var domain = require('domain');
var caching = function(args) {

2
lib/multi_caching.js

@ -1,3 +1,5 @@
/*jshint -W072 */
var async = require('async');
var domain = require('domain');

2
test/stores/options.unit.js

@ -1,3 +1,5 @@
/*jshint -W072 */
var caching = require("../../index");
var assert = require("assert");
var support = require('../support');

Loading…
Cancel
Save