Comparing version 0.0.11 to 0.0.12
@@ -0,3 +1,7 @@ | ||
Version 0.0.12: | ||
* Fix in `disallow_space_after_object_keys` location reporting. | ||
Version 0.0.11: | ||
* Option `disallow_space_after_object_keys`. | ||
* Option `disallow_spaces_inside_array_brackets`. | ||
* Do not automatically exclude hidden files. | ||
@@ -4,0 +8,0 @@ |
@@ -30,3 +30,3 @@ var assert = require('assert'); | ||
if (colon.range[0] !== key.range[1]) { | ||
errors.add('Illegal space after key', key.loc); | ||
errors.add('Illegal space after key', key.loc.end); | ||
} | ||
@@ -33,0 +33,0 @@ }); |
@@ -5,3 +5,3 @@ { | ||
"name" : "jscs", | ||
"version" : "0.0.11", | ||
"version" : "0.0.12", | ||
"repository" : "https://github.com/mdevils/jscs", | ||
@@ -8,0 +8,0 @@ "contributors" : [ |
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
92365