New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-crisp

Package Overview
Dependencies
Maintainers
2
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-crisp - npm Package Compare versions

Comparing version 1.0.23 to 1.0.25

2

package.json
{
"name": "eslint-plugin-crisp",
"version": "1.0.23",
"version": "1.0.25",
"description": "Custom EsLint Rules for Crisp",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -20,2 +20,8 @@ module.exports = {

const nextProperty = properties[index + 1];
// Ignore non-property values (e.g. spread expressions)
if (property.type !== "Property" || !nextProperty || nextProperty.type !== "Property") {
return;
}
if (property.key.name > nextProperty.key.name) {

@@ -22,0 +28,0 @@ context.report({

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