Commit 0abcee84 authored by analog-nico's avatar analog-nico
Browse files

Improved linting

parent 9ec31214
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -87,7 +87,9 @@
    "it"          : false,
    "xit"         : false,
    "before"      : false,
    "beforeEach"  : false,
    "after"       : false,
    "afterEach"   : false,
    "expect"      : false
  },

+4 −2
Original line number Diff line number Diff line
@@ -18,7 +18,8 @@ var paths = {
    libJsFiles: './lib/**/*.js',
    gulpfile: './gulpfile.js',
    specFiles: './test/spec/**/*.js',
    fixtureFiles: './test/fixtures/**/*.js'
    fixtureFiles: './test/fixtures/**/*.js',
    jshintrc: './.jshintrc'
};


@@ -30,7 +31,8 @@ gulp.task('watch', function () {
        paths.libJsFiles,
        paths.gulpfile,
        paths.specFiles,
        paths.fixtureFiles
        paths.fixtureFiles,
        paths.jshintrc
    ], [
        'validate'
    ]);