Socket
Book a DemoInstallSign in
Socket

eslint-json

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-json

JSON formatter for ESLint

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
3.7K
60.11%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-json Build Status

JSON reporter for ESLint

Makes it easy to use ESLint with other tools.

Install

$ npm install --save-dev eslint-json

Usage

ESLint CLI

$ eslint --format=node_modules/eslint-json file.js

grunt-eslint

grunt.initConfig({
	eslint: {
		options: {
			format: 'node_modules/eslint-json'
		},
		target: ['file.js']
	}
});

grunt.loadNpmTasks('grunt-eslint');
grunt.registerTask('default', ['eslint']);

Example output

[
	{
		"filePath": "/Users/sindresorhus/dev/eslint-json/index.js",
		"messages":[
			{
				"ruleId": "no-warning-comments",
				"severity": 1,
				"message": "Unexpected 'todo' comment.",
				"line": 8,
				"column": 2,
				"nodeType": "Line",
				"source": "\t// TODO: fix this later"
			}
		],
		"errorCount": 0,
		"warningCount": 1
	}
]

License

MIT © Sindre Sorhus

Keywords

eslint

FAQs

Package last updated on 15 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts