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

eslint-plugin-haraka

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-haraka - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

7

Changes.md

@@ -0,1 +1,6 @@

# 1.0.5 - 2017-02-01
* fixed missing comma at end of no-empty rule
* added "no-undef": 1 (warnings only)
# 1.0.3 - 2017-01-27

@@ -8,2 +13,2 @@

* added env:es6=true
* added space-before-function-paren rule
* added space-before-function-paren rule

5

index.js

@@ -14,5 +14,6 @@ var fs = require('fs');

"no-delete-var": 2,
"no-empty": 1,
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-label-var": 2,
"no-shadow": 2,
"no-undef": 1,
"no-unused-vars": [ 1, { "args": "none" }],

@@ -38,2 +39,2 @@ "space-before-function-paren": [2, { "anonymous": "always", "named": "always" }]

}
}
}
{
"name": "eslint-plugin-haraka",
"version": "1.0.4",
"version": "1.0.5",
"description": "eslint rules for Haraka projects",

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

@@ -15,3 +15,4 @@ # haraka-eslint

"haraka"
]
],
"extends": ["eslint:recommended", "plugin:haraka/recommended"],
}

@@ -37,2 +38,2 @@ `

If you disagree, you can add custom rules to your .eslintrc.json file.
If you disagree, you can add custom rules to your .eslintrc.json file.
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