Socket
Socket
Sign inDemoInstall

jscs

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jscs - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

3

CHANGELOG.md

@@ -0,1 +1,4 @@

Version 1.2.1:
* Fix in error message for rule `maximumLineLength` (@pdehaan).
Version 1.2.0:

@@ -2,0 +5,0 @@ * Rule `requireCommaBeforeLineBreak` (@mikesherov).

2

lib/rules/maximum-line-length.js

@@ -26,3 +26,3 @@ var assert = require('assert');

if (lines[i].length > maximumLineLength) {
errors.add('Line must be at most ' + maximumLineLength + 'characters', i + 1, 0);
errors.add('Line must be at most ' + maximumLineLength + ' characters', i + 1, 0);
}

@@ -29,0 +29,0 @@ }

@@ -5,3 +5,3 @@ {

"name": "jscs",
"version": "1.2.0",
"version": "1.2.1",
"repository": "https://github.com/mdevils/node-jscs",

@@ -8,0 +8,0 @@ "contributors": [

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc