sazze/node-pm

View on GitHub
docs/scripts/sunlight.js

Summary

Maintainability
F
2 mos
Test Coverage

File sunlight.js has 884 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * Sunlight
 *    Intelligent syntax highlighting
 *
 * http://sunlightjs.com/
Severity: Major
Found in docs/scripts/sunlight.js - About 2 days to fix

    Function prototype has 420 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        Highlighter.prototype = (function() {
            var parseNextToken = (function() {
                function isIdentMatch(context) {
                    return context.language.identFirstLetter && context.language.identFirstLetter.test(context.reader.current());
                }
    Severity: Major
    Found in docs/scripts/sunlight.js - About 2 days to fix

      Function parseNextToken has 113 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              var parseNextToken = (function() {
                  function isIdentMatch(context) {
                      return context.language.identFirstLetter && context.language.identFirstLetter.test(context.reader.current());
                  }
      
      
      Severity: Major
      Found in docs/scripts/sunlight.js - About 4 hrs to fix

        Function createCodeReader has 88 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            function createCodeReader(text) {
                var index = 0,
                    line = 1,
                    column = 1,
                    length,
        Severity: Major
        Found in docs/scripts/sunlight.js - About 3 hrs to fix

          Function tokenize has 56 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  function tokenize(unhighlightedCode, language, partialContext, options) {
                      var tokens = [],
                          context,
                          continuation,
                          token;
          Severity: Major
          Found in docs/scripts/sunlight.js - About 2 hrs to fix

            Function highlightRecursive has 53 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                        highlightNode: function highlightRecursive(node) {
                            var match,
                                languageId,
                                currentNodeCount,
                                j,
            Severity: Major
            Found in docs/scripts/sunlight.js - About 2 hrs to fix

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

                      function getScopeReaderFunction(scope, tokenName) {
                          var escapeSequences = scope[2] || [],
                              closerLength = scope[1].length,
                              closer = typeof(scope[1]) === "string" ? new RegExp(regexEscape(scope[1])) : scope[1].regex,
                              zeroWidth = scope[3] || false;
              Severity: Minor
              Found in docs/scripts/sunlight.js - About 1 hr to fix

                Function createAnalyzerContext has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        function createAnalyzerContext(parserContext, partialContext, options) {
                            var nodes = [],
                                prepareText = function() {
                                    var nbsp, tab;
                                    if (options.showWhitespace) {
                Severity: Minor
                Found in docs/scripts/sunlight.js - About 1 hr to fix

                  Function analyze has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                          function analyze(analyzerContext, startIndex) {
                              var nodes,
                                  lastIndex,
                                  container,
                                  i,
                  Severity: Minor
                  Found in docs/scripts/sunlight.js - About 1 hr to fix

                    Function createBetweenRule has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        function createBetweenRule(startIndex, opener, closer, caseInsensitive) {
                            return function(tokens) {
                                var index = startIndex,
                                    token,
                                    success = false;
                    Severity: Minor
                    Found in docs/scripts/sunlight.js - About 1 hr to fix

                      Function defaultNumberParser has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          function defaultNumberParser(context) {
                              var current = context.reader.current(), 
                                  number, 
                                  line = context.reader.getLine(), 
                                  column = context.reader.getColumn(),
                      Severity: Minor
                      Found in docs/scripts/sunlight.js - About 1 hr to fix

                        Function read has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                                    read: function(count) {
                                        var value = getCharacters(count),
                                            newlineCount,
                                            lastChar;
                        
                        
                        Severity: Minor
                        Found in docs/scripts/sunlight.js - About 1 hr to fix

                          Function createProceduralRule has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              function createProceduralRule(startIndex, direction, tokenRequirements, caseInsensitive) {
                                  tokenRequirements = tokenRequirements.slice(0);
                                  return function(tokens) {
                                      var tokenIndexStart = startIndex,
                                          j,
                          Severity: Minor
                          Found in docs/scripts/sunlight.js - About 1 hr to fix

                            Function registerLanguage has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                    registerLanguage: function(languageId, languageData) {
                                        var tokenName,
                                            embeddedLanguages,
                                            languageName;
                                        
                            Severity: Minor
                            Found in docs/scripts/sunlight.js - About 1 hr to fix

                              Function matchWord has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                  function matchWord(context, wordMap, tokenName, doNotRead) {
                                      var current = context.reader.current(),
                                          i,
                                          word,
                                          peek,
                              Severity: Minor
                              Found in docs/scripts/sunlight.js - About 1 hr to fix

                                Identical blocks of code found in 2 locations. Consider refactoring.
                                Open

                                (function(window, document, undefined){
                                
                                    var 
                                        //http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html
                                        //we have to sniff this because IE requires \r
                                Severity: Major
                                Found in docs/scripts/sunlight.js and 1 other location - About 2 mos to fix
                                docs/template/static/scripts/sunlight.js on lines 10..1157

                                Duplicated Code

                                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                Tuning

                                This issue has a mass of 9242.

                                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                Refactorings

                                Further Reading

                                There are no issues that match your filters.

                                Category
                                Status