yannickcr/eslint-plugin-react

View on GitHub
lib/rules/no-unknown-property.js

Summary

Maintainability
D
2 days
Test Coverage

File no-unknown-property.js has 479 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * @fileoverview Prevent usage of unknown DOM property
 * @author Yannick Croissant
 */

Severity: Minor
Found in lib/rules/no-unknown-property.js - About 7 hrs to fix

    Function create has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
    Open

      create(context) {
        function getIgnoreConfig() {
          return (context.options[0] && context.options[0].ignore) || DEFAULTS.ignore;
        }
    
    
    Severity: Minor
    Found in lib/rules/no-unknown-property.js - About 4 hrs to fix

    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 create has 76 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      create(context) {
        function getIgnoreConfig() {
          return (context.options[0] && context.options[0].ignore) || DEFAULTS.ignore;
        }
    
    
    Severity: Major
    Found in lib/rules/no-unknown-property.js - About 3 hrs to fix

      Function JSXAttribute has 64 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            JSXAttribute(node) {
              const ignoreNames = getIgnoreConfig();
              const actualName = context.getSourceCode().getText(node.name);
              if (ignoreNames.indexOf(actualName) >= 0) {
                return;
      Severity: Major
      Found in lib/rules/no-unknown-property.js - About 2 hrs to fix

        Avoid too many return statements within this function.
        Open

                  return;
        Severity: Major
        Found in lib/rules/no-unknown-property.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  if (tagName === 'fbt' || tagName === 'fbs') { return; } // fbt/fbs nodes are bonkers, let's not go there
          Severity: Major
          Found in lib/rules/no-unknown-property.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                    if (!isValidHTMLTagInJSX(node)) { return; }
            Severity: Major
            Found in lib/rules/no-unknown-property.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                        return;
              Severity: Major
              Found in lib/rules/no-unknown-property.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                          return;
                Severity: Major
                Found in lib/rules/no-unknown-property.js - About 30 mins to fix

                  There are no issues that match your filters.

                  Category
                  Status