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

eslint-plugin-n8n-nodes-base

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-n8n-nodes-base - npm Package Compare versions

Comparing version 1.0.40 to 1.0.41

dist/non-autofixable.js

14

dist/lib/rules/filesystem-wrong-node-dirname.js

@@ -45,2 +45,4 @@ var __create = Object.create;

const [filename, dirname] = context.getFilename().split("/").reverse();
if (DIRS_WITH_NESTING.includes(dirname.toLowerCase()))
return;
const parts = filename.split(".node.ts");

@@ -52,3 +54,3 @@ if (parts.length !== 2)

return;
if (dirname !== expected) {
if (dirname.replace("Trigger", "") !== expected) {
const topOfFile = { line: 1, column: 1 };

@@ -65,3 +67,13 @@ context.report({

});
const DIRS_WITH_NESTING = [
"aws",
"facebook",
"google",
"magento",
"mattermost",
"microsoft",
"notion",
"SyncroMsp"
];
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {});

3

package.json
{
"name": "eslint-plugin-n8n-nodes-base",
"version": "1.0.40",
"version": "1.0.41",
"main": "dist/index.js",

@@ -12,2 +12,3 @@ "author": {

"dist/index.js",
"dist/non-autofixable.js",
"dist/lib/**/*"

@@ -14,0 +15,0 @@ ],

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