@n8n/scan-community-package 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n8n/scan-community-package",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Static code analyser for n8n community packages",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "bin": "scanner/cli.mjs",
@@ -119,7 +119,9 @@ const analyzePackage = async (packageDir) => {
119
119
  cwd: packageDir,
120
120
  allowInlineConfig: false,
121
121
  overrideConfigFile: true,
122
- overrideConfig: defineConfig(n8nCommunityNodesPlugin.configs.recommended),
122
+ overrideConfig: defineConfig(n8nCommunityNodesPlugin.configs.recommended, {
123
+ rules: { 'no-console': 'error' },
124
+ }),
123
125
  });
124
126
 
125
127
  try {