You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you run jshint with --verbose option, you get the output in this format:
jshint --verbose app
app\config\logger.configuration.js: line 34, col 46, 'settings' is defined but never used. (W098)
app\config\logger.configuration.js: line 45, col 49, 'settings' is defined but never used. (W098)
app\config\sms.client.configuration.js: line 37, col 2, Missing semicolon. (W033)
app\support\clients\cs.client.js: line 83, col 16, Expected '===' and instead saw '=='. (W116)
app\support\clients\cs.client.js: line 64, col 5, 'getEntityByPath' is defined but never used. (W098)
However, I couldn't manage to get the same output format with this grunt task. I have something like this:
app\config\logger.configuration.js
34 |var fileFormatter = function(message, level, settings) {
^ 'settings' is defined but never used.
45 |var consoleFormatter = function(message, level, settings) {
^ 'settings' is defined but never used.
app\config\sms.client.configuration.js
37 |}
^ Missing semicolon.
The text was updated successfully, but these errors were encountered:
If you run jshint with --verbose option, you get the output in this format:
However, I couldn't manage to get the same output format with this grunt task. I have something like this:
Which gives me this output:
The text was updated successfully, but these errors were encountered: