diff options
Diffstat (limited to 'searx/static')
| -rw-r--r-- | searx/static/themes/simple/gruntfile.js | 7 | ||||
| -rw-r--r-- | searx/static/themes/simple/package.json | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/searx/static/themes/simple/gruntfile.js b/searx/static/themes/simple/gruntfile.js index aac1217ea..46ab657e0 100644 --- a/searx/static/themes/simple/gruntfile.js +++ b/searx/static/themes/simple/gruntfile.js @@ -1,4 +1,4 @@ -/* jshint esversion: 6 */ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ module.exports = function (grunt) { @@ -27,7 +27,7 @@ module.exports = function (grunt) { eslint: { options: { overrideConfigFile: '.eslintrc.json', - failOnError: false, + failOnError: true, fix: grunt.option('fix') }, target: [ @@ -268,13 +268,12 @@ module.exports = function (grunt) { grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-image'); - grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-contrib-less'); grunt.loadNpmTasks('grunt-contrib-cssmin'); grunt.loadNpmTasks('grunt-stylelint'); grunt.loadNpmTasks('grunt-eslint'); - grunt.registerTask('test', ['jshint']); + grunt.registerTask('test', ['eslint']); grunt.registerTask('default', [ 'eslint', diff --git a/searx/static/themes/simple/package.json b/searx/static/themes/simple/package.json index 321d44556..b90d6de70 100644 --- a/searx/static/themes/simple/package.json +++ b/searx/static/themes/simple/package.json @@ -4,7 +4,6 @@ "grunt": "~1.4.1", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-cssmin": "^4.0.0", - "grunt-contrib-jshint": "~3.1.1", "grunt-contrib-less": "~3.0.0", "grunt-contrib-uglify": "~5.0.1", "grunt-xmlmin": "~0.1.8", @@ -29,6 +28,7 @@ "scripts": { "all": "npm install && grunt", "build": "grunt", + "test": "grunt test", "eslint": "grunt eslint", "eslint-fix": "grunt eslint --fix", "watch": "grunt watch", |