jshint-stylish
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "jshint-stylish", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Stylish reporter for JSHint", | ||
@@ -10,3 +10,3 @@ "license": "MIT", | ||
"email": "sindresorhus@gmail.com", | ||
"url": "http://sindresorhus.com" | ||
"url": "sindresorhus.com" | ||
}, | ||
@@ -26,6 +26,9 @@ "engines": { | ||
"reporter", | ||
"formatter", | ||
"format", | ||
"lint", | ||
"validate", | ||
"stylish", | ||
"elegant" | ||
"elegant", | ||
"pretty" | ||
], | ||
@@ -32,0 +35,0 @@ "dependencies": { |
@@ -5,7 +5,7 @@ # jshint-stylish [![Build Status](https://travis-ci.org/sindresorhus/jshint-stylish.svg?branch=master)](https://travis-ci.org/sindresorhus/jshint-stylish) | ||
![screenshot](screenshot.png) | ||
![](screenshot.png) | ||
Compared to the default reporter: | ||
![default reporter](screenshot-default-formatter.png) | ||
![](screenshot-default-formatter.png) | ||
@@ -15,3 +15,3 @@ | ||
```sh | ||
``` | ||
$ npm install --save-dev jshint-stylish | ||
@@ -25,3 +25,3 @@ ``` | ||
```sh | ||
``` | ||
$ jshint --reporter node_modules/jshint-stylish/stylish.js file.js | ||
@@ -28,0 +28,0 @@ ``` |
@@ -31,3 +31,3 @@ 'use strict'; | ||
chalk.gray('col ' + err.character), | ||
isError ? chalk.red(err.reason) : (process.platform !== 'win32' ? chalk.blue(err.reason) : chalk.cyan(err.reason)) | ||
isError ? chalk.red(err.reason) : chalk.blue(err.reason) | ||
]; | ||
@@ -34,0 +34,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4622