eslint: grunt integration

This commit is contained in:
Alexandre Flament 2021-08-24 09:52:40 +02:00 committed by Markus Heiser
parent 2948a99b6e
commit 0ee316f3d1
4 changed files with 6 additions and 13 deletions

2
manage
View file

@ -665,8 +665,6 @@ themes.oscar() {
themes.simple() {
build_msg GRUNT "theme: simple"
npm --prefix searx/static/themes/simple run build
# just report eslint issues but do not break the build (--force)
npm --prefix searx/static/themes/simple run eslint --force
dump_return $?
}

View file

@ -5,8 +5,7 @@
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
"ecmaVersion": 12
},
"rules": {
}

View file

@ -9,15 +9,13 @@ module.exports = function(grunt) {
watch: {
scripts: {
files: ['src/**'],
tasks: ['jshint', 'copy', 'concat', 'uglify', 'less:development', 'less:production']
tasks: ['eslint', 'copy', 'concat', 'uglify', 'less:development', 'less:production']
}
},
jshint: {
files: ['src/js/main/*.js', 'src/js/head/*.js', '../__common__/js/*.js'],
},
eslint: {
options: {
configFile: '.eslintrc.json'
configFile: '.eslintrc.json',
failOnError: false
},
target: [
'src/js/main/*.js',
@ -204,8 +202,7 @@ module.exports = function(grunt) {
grunt.registerTask('test', ['jshint']);
grunt.registerTask('default', [
// 'eslint',
'jshint',
'eslint',
'stylelint',
'copy',
'concat',

View file

@ -1,6 +1,5 @@
{
"devDependencies": {
"eslint": "^7.32.0",
"grunt-cli": "^1.4.3",
"grunt": "~1.4.1",
"grunt-contrib-copy": "^1.0.0",
@ -14,7 +13,7 @@
"grunt-eslint": "^23.0.0",
"grunt-webfont": "^1.7.2",
"ionicons-npm": "^2.0.1",
"jslint": "^0.12.1",
"eslint": "^7.32.0",
"less": "^4.1.1",
"less-plugin-clean-css": "^1.5.1",
"stylelint": "^13.13.1",