Showing 22 of 45 total issues
Function renderAstToPlain
has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring. Open
const renderAstToPlain = (ast, host = '') => {
const result = ast.map((node) => {
switch (node.type) {
case 'changed':
if (host === '') {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function generateDiffs
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
const generateDiffs = (beforeConfig, afterConfig) => {
const beforeConfigKeys = Object.keys(beforeConfig);
const afterConfigKeys = Object.keys(afterConfig);
const unionKeys = _.union(beforeConfigKeys, afterConfigKeys);
const result = unionKeys.map((key) => {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function renderAstToTree
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
const renderAstToTree = (ast, indents = 1) => {
const newIndentSize = indentSize.repeat(indents);
const newIndents = indents + 2;
const result = ast.map((node) => {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function renderAstToPlain
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
const renderAstToPlain = (ast, host = '') => {
const result = ast.map((node) => {
switch (node.type) {
case 'changed':
if (host === '') {
Function result
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
const result = ast.map((node) => {
switch (node.type) {
case 'changed':
if (host === '') {
return `Property '${node.key}' was updated. From '${node.beforeValue}' to '${node.afterValue}'`;
Function renderAstToTree
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
const renderAstToTree = (ast, indents = 1) => {
const newIndentSize = indentSize.repeat(indents);
const newIndents = indents + 2;
const result = ast.map((node) => {
Avoid too many return
statements within this function. Open
return `${newIndentSize}- ${node.key}: ${node.beforeValue}`;
Avoid too many return
statements within this function. Open
return renderAstToPlain(`${host}.${node.key}`, node.children);
Avoid too many return
statements within this function. Open
return `${newIndentSize}+ ${node.key}: ${node.afterValue}`;
Avoid too many return
statements within this function. Open
return `${newIndentSize}- ${node.key}: ${renderAstToTree(node.children, newIndents)}`;
Avoid too many return
statements within this function. Open
return `Property '${node.key}' was added with value: '${node.afterValue}'`;
Avoid too many return
statements within this function. Open
return `Property '${node.key}' was removed`;
Avoid too many return
statements within this function. Open
return buildNode({ key, type: 'unchanged', beforeValue: beforeConfig[key], afterValue: afterConfig[key] });
Avoid too many return
statements within this function. Open
return `${newIndentSize}+ ${node.key}: ${renderAstToTree(node.children, newIndents)}`;
Avoid too many return
statements within this function. Open
return renderAstToPlain(node.children, node.key);
Avoid too many return
statements within this function. Open
return null;
Avoid too many return
statements within this function. Open
return buildNode({ key, type: 'unchanged', children: generateDiffs(beforeConfig[key], afterConfig[key]) });
Avoid too many return
statements within this function. Open
return `Property '${host}.${node.key}' was added with value: '${node.afterValue}'`;
Avoid too many return
statements within this function. Open
return `Property '${host}.${node.key}' was removed`;
Avoid too many return
statements within this function. Open
return null;