Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gherkin-lint

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gherkin-lint - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

package.json
{
"name": "gherkin-lint",
"version": "0.1.2",
"version": "0.1.3",
"description": "A Gherkin linter/validator written in javascript",

@@ -5,0 +5,0 @@ "author": "Vasiliki Siakka",

@@ -7,3 +7,3 @@ var rule = 'no-files-without-scenarios';

rule : rule,
line : 0};
line : 1};
}

@@ -10,0 +10,0 @@ }

@@ -11,3 +11,3 @@ var fs = require('fs');

rule : rule,
line : i + 1});
line : i + 2});
}

@@ -14,0 +14,0 @@ }

@@ -10,3 +10,3 @@ var rule = 'no-partially-commented-tag-lines';

rule : rule,
line : parsedFile.location.line});
line : tag.location.line});
}

@@ -13,0 +13,0 @@ });

@@ -7,3 +7,3 @@ var fs = require('fs');

var lines = fs.readFileSync(fileName).toString().split('\n');
var lineNo = 0;
var lineNo = 1;
lines.forEach(function(line) {

@@ -10,0 +10,0 @@ if (line[line.length - 1] == ' ') {

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