ckeditor/ckeditor5-engine

View on GitHub
src/dev-utils/model.js

Summary

Maintainability
C
1 day
Test Coverage

Function stringify has 70 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function stringify( node, selectionOrPositionOrRange = null, markers = null ) {
    const model = new Model();
    const mapper = new Mapper();
    let selection, range;

Severity: Major
Found in src/dev-utils/model.js - About 2 hrs to fix

    Function parse has 41 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function parse( data, schema, options = {} ) {
        const mapper = new Mapper();
    
        // Replace not accepted by XML `$text` tag name by valid one `model-text-with-attributes`.
        data = data.replace( new RegExp( '\\$text', 'g' ), 'model-text-with-attributes' );
    Severity: Minor
    Found in src/dev-utils/model.js - About 1 hr to fix

      Function stringify has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      export function stringify( node, selectionOrPositionOrRange = null, markers = null ) {
          const model = new Model();
          const mapper = new Mapper();
          let selection, range;
      
      
      Severity: Minor
      Found in src/dev-utils/model.js - About 1 hr 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 setData has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export function setData( model, data, options = {} ) {
          if ( !( model instanceof Model ) ) {
              throw new TypeError( 'Model needs to be an instance of module:engine/model/model~Model.' );
          }
      
      
      Severity: Minor
      Found in src/dev-utils/model.js - About 1 hr to fix

        Function parse has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

        export function parse( data, schema, options = {} ) {
            const mapper = new Mapper();
        
            // Replace not accepted by XML `$text` tag name by valid one `model-text-with-attributes`.
            data = data.replace( new RegExp( '\\$text', 'g' ), 'model-text-with-attributes' );
        Severity: Minor
        Found in src/dev-utils/model.js - About 1 hr 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

        There are no issues that match your filters.

        Category
        Status