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

eslint-plugin-yola

Package Overview
Dependencies
Maintainers
3
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-yola - npm Package Compare versions

Comparing version 0.1.3 to 0.2.1

8

CHANGELOG.md
# Change log
## 0.2.1
* Fix bad release
## 0.2.0
* Add `eslint-plugin-html` for inline javascript linting.
## 0.1.3

@@ -4,0 +12,0 @@

3

package.json
{
"name": "eslint-plugin-yola",
"version": "0.1.3",
"version": "0.2.1",
"main": "index.js",

@@ -24,2 +24,3 @@ "scripts": {

"eslint-config-airbnb-base": "12.x",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "2.x",

@@ -26,0 +27,0 @@ "eslint-plugin-jsx-a11y": "6.x",

@@ -7,10 +7,13 @@ 'use strict';

const plugin = require(`eslint-plugin-${pluginName}`); // eslint-disable-line global-require, import/no-dynamic-require
const result = Object.assign(rules);
const result = Object.assign({}, rules);
Object.keys(plugin.rules)
.forEach((ruleName) => {
result[`${pluginName}/${ruleName}`] = plugin.rules[ruleName];
});
if (plugin.rules) {
Object.keys(plugin.rules)
.forEach((ruleName) => {
result[`${pluginName}/${ruleName}`] = plugin.rules[ruleName];
});
}
return result;
}, {});
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