diff --git a/CHANGELOG.md b/CHANGELOG.md index 42fd0977..d5735875 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Fixed issue where heat index was reporting incorrect values in Celsius and Fahrenheit. [#1263](https://github.com/MichMich/MagicMirror/issues/1263) - Fixed weatherforecast to use dt_txt field instead of dt to handle timezones better - Newsfeed now remembers to show the description when `"ARTICLE_LESS_DETAILS"` is called if the user wants to always show the description. [#1282](https://github.com/MichMich/MagicMirror/issues/1282) +- `clientonly/*.js` is now linted, and one linting error is fixed ### Updated - Updated Italian translation diff --git a/Gruntfile.js b/Gruntfile.js index 8d069c82..3bc8aeb1 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -11,6 +11,7 @@ module.exports = function(grunt) { "modules/default/*.js", "modules/default/*/*.js", "serveronly/*.js", + "clientonly/*.js", "*.js", "tests/**/*.js", "!modules/default/alert/notificationFx.js", diff --git a/clientonly/index.js b/clientonly/index.js index 72495504..28a45029 100644 --- a/clientonly/index.js +++ b/clientonly/index.js @@ -88,7 +88,7 @@ process.stdout.write(`Client: ${err}`); }); - child.on('close', (code) => { + child.on("close", (code) => { if (code != 0) { console.log(`There something wrong. The clientonly is not running code ${code}`); }