diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-12-14 08:07:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-14 08:07:22 +0100 |
| commit | 4f22615259fc4a9fb80b47ad5b4bcd17f994bc68 (patch) | |
| tree | 15bcc625b749b3434576837414c66e7cab9d31b8 /searx/static/themes/simple/package.json | |
| parent | 5c7167cd5af2c18826595bfff877766dab4b44ca (diff) | |
| parent | f287787c44956a6584f78fdd9d6bf423384d1643 (diff) | |
Merge pull request #538 from return42/eslint
SearXNG JavaScript Style Guide
Diffstat (limited to 'searx/static/themes/simple/package.json')
| -rw-r--r-- | searx/static/themes/simple/package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/static/themes/simple/package.json b/searx/static/themes/simple/package.json index 356230f52..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,7 +28,9 @@ "scripts": { "all": "npm install && grunt", "build": "grunt", + "test": "grunt test", "eslint": "grunt eslint", + "eslint-fix": "grunt eslint --fix", "watch": "grunt watch", "webfont": "grunt webfont", "clean": "rm -Rf node_modules package-lock.json ion.less", |