UNPKG

node-red-contrib-code-analyzer

Version:

A Node-RED package that provides a background service to detect debugging artifacts in function nodes across Node-RED flows. Features performance monitoring (CPU, memory, event loop), queue monitoring, and Slack alerting.

27 lines 573 B
module.exports = { env: { browser: true, commonjs: true, es2021: true, node: true, jest: true }, extends: [ 'eslint:recommended' ], parserOptions: { ecmaVersion: 'latest' }, rules: { 'indent': ['error', 4], 'linebreak-style': ['error', 'unix'], 'quotes': ['error', 'single'], 'semi': ['error', 'always'], 'no-unused-vars': ['warn'], 'no-console': ['warn'] }, globals: { 'RED': 'readonly', 'fetch': 'readonly' } };