[READ-ONLY] Mirror of https://github.com/andrioid/n8n-nodes-atproto. atproto node for n8n
0

Configure Feed

Select the types of activity you want to include in your feed.

n8n-nodes-atproto / eslint.config.mjs
446 B 15 lines
1import { configWithoutCloudSupport } from '@n8n/node-cli/eslint'; 2 3export default [ 4 ...configWithoutCloudSupport, 5 { 6 ignores: ['tests/**', 'vite.config.build.ts', 'vitest.config.ts', 'scripts/**'], 7 }, 8 { 9 // The no-credential-reuse rule resolves dist/X → X to find source files, 10 // but our source lives in src/X (Vite compiles src/ → dist/). False positive. 11 rules: { 12 '@n8n/community-nodes/no-credential-reuse': 'off', 13 }, 14 }, 15];