Add Wyoming credentials and node skeleton

This commit is contained in:
Igor Karpovich 2025-12-08 07:48:05 +00:00
commit 5340284865
10 changed files with 285 additions and 12 deletions

View file

@ -1,3 +1,12 @@
import { config } from '@n8n/node-cli/eslint';
export default config;
export default [
...config,
{
files: ['**/*.ts'],
rules: {
'@n8n/community-nodes/no-restricted-imports': 'off',
'@n8n/community-nodes/no-restricted-globals': 'off',
},
},
];