gherkin-lint
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "gherkin-lint", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "A Gherkin linter/validator written in javascript", | ||
@@ -5,0 +5,0 @@ "author": "Vasiliki Siakka", |
@@ -9,3 +9,3 @@ var fs = require('fs'); | ||
lines.forEach(function(line) { | ||
if (line.endsWith(' ')) { | ||
if (line[line.length - 1] == ' ') { | ||
errors.push({message: 'Trailing spaces are not allowed', | ||
@@ -12,0 +12,0 @@ rule : rule, |
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
27143