summaryrefslogtreecommitdiff
path: root/test/eclint.test.js
blob: cbce1109b81ee82237ec51efd5a6846fb84b1b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
var lint = require('mocha-eslint');

describe('jslint', function() {
    var paths = [
      'bin',
      'lib',
      'test'
    ];

    var options = {};
    options.formatter = 'compact';
    lint(paths, options);
});