Plate-Project/plate

View on GitHub
plate/static/js/lunr/lunr.stemmer.support.js

Summary

Maintainability
F
4 days
Test Coverage

Function SnowballProgram has 223 lines of code (exceeds 25 allowed). Consider refactoring.
Open

            SnowballProgram: function() {
                var current;
                return {
                    bra : 0,
                    ket : 0,
Severity: Major
Found in plate/static/js/lunr/lunr.stemmer.support.js - About 1 day to fix

    File lunr.stemmer.support.js has 255 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /*!
     * Snowball JavaScript Library v0.3
     * http://code.google.com/p/urim/
     * http://snowball.tartarus.org/
     *
    Severity: Minor
    Found in plate/static/js/lunr/lunr.stemmer.support.js - About 2 hrs to fix

      Function find_among_b has 43 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

                          find_among_b : function(v, v_size) {
                              var i = 0, j = v_size, c = this.cursor, lb = this.limit_backward, common_i = 0, common_j = 0, first_key_inspected = false;
                              while (true) {
                                  var k = i + ((j - i) >> 1), diff = 0, common = common_i < common_j
                                      ? common_i
      Severity: Minor
      Found in plate/static/js/lunr/lunr.stemmer.support.js - About 1 hr to fix

        Function find_among has 43 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                            find_among : function(v, v_size) {
                                var i = 0, j = v_size, c = this.cursor, l = this.limit, common_i = 0, common_j = 0, first_key_inspected = false;
                                while (true) {
                                    var k = i + ((j - i) >> 1), diff = 0, common = common_i < common_j
                                        ? common_i
        Severity: Minor
        Found in plate/static/js/lunr/lunr.stemmer.support.js - About 1 hr to fix

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

                                  while (true) {
                                      var w = v[i];
                                      if (common_i >= w.s_size) {
                                          this.cursor = c + w.s_size;
                                          if (!w.method)
          Severity: Major
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 1 other location - About 5 hrs to fix
          plate/static/js/lunr/lunr.stemmer.support.js on lines 225..239

          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 135.

          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

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

                                  while (true) {
                                      var w = v[i];
                                      if (common_i >= w.s_size) {
                                          this.cursor = c - w.s_size;
                                          if (!w.method)
          Severity: Major
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 1 other location - About 5 hrs to fix
          plate/static/js/lunr/lunr.stemmer.support.js on lines 180..194

          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 135.

          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

          Similar blocks of code found in 16 locations. Consider refactoring.
          Open

          ;(function (root, factory) {
              if (typeof define === 'function' && define.amd) {
                  // AMD. Register as an anonymous module.
                  define(factory)
              } else if (typeof exports === 'object') {
          Severity: Major
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 15 other locations - About 2 hrs to fix
          plate/static/js/lunr/lunr.da.js on lines 23..273
          plate/static/js/lunr/lunr.de.js on lines 23..373
          plate/static/js/lunr/lunr.du.js on lines 23..437
          plate/static/js/lunr/lunr.es.js on lines 23..588
          plate/static/js/lunr/lunr.fi.js on lines 23..529
          plate/static/js/lunr/lunr.fr.js on lines 23..691
          plate/static/js/lunr/lunr.hu.js on lines 23..554
          plate/static/js/lunr/lunr.it.js on lines 23..605
          plate/static/js/lunr/lunr.jp.js on lines 23..118
          plate/static/js/lunr/lunr.no.js on lines 23..246
          plate/static/js/lunr/lunr.pt.js on lines 23..559
          plate/static/js/lunr/lunr.ro.js on lines 23..547
          plate/static/js/lunr/lunr.ru.js on lines 23..380
          plate/static/js/lunr/lunr.sv.js on lines 23..245
          plate/static/js/lunr/lunr.tr.js on lines 23..1063

          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 89.

          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

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

                                      if (ch <= max && ch >= min) {
                                          ch -= min;
                                          if (s[ch >> 3] & (0X1 << (ch & 0X7))) {
                                              this.cursor--;
                                              return true;
          Severity: Major
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 1 other location - About 1 hr to fix
          plate/static/js/lunr/lunr.stemmer.support.js on lines 79..85

          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 65.

          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

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

                                      if (ch <= max && ch >= min) {
                                          ch -= min;
                                          if (s[ch >> 3] & (0X1 << (ch & 0X7))) {
                                              this.cursor++;
                                              return true;
          Severity: Major
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 1 other location - About 1 hr to fix
          plate/static/js/lunr/lunr.stemmer.support.js on lines 92..98

          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 65.

          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

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

                                      var k = i + ((j - i) >> 1), diff = 0, common = common_i < common_j
                                          ? common_i
                                          : common_j, w = v[k];
          Severity: Minor
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 1 other location - About 40 mins to fix
          plate/static/js/lunr/lunr.stemmer.support.js on lines 199..201

          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 48.

          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

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

                                      var k = i + ((j - i) >> 1), diff = 0, common = common_i < common_j
                                          ? common_i
                                          : common_j, w = v[k];
          Severity: Minor
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 1 other location - About 40 mins to fix
          plate/static/js/lunr/lunr.stemmer.support.js on lines 154..156

          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 48.

          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

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

                                  var i = 0, j = v_size, c = this.cursor, l = this.limit, common_i = 0, common_j = 0, first_key_inspected = false;
          Severity: Minor
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 1 other location - About 30 mins to fix
          plate/static/js/lunr/lunr.stemmer.support.js on lines 197..197

          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 45.

          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

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

                                  var i = 0, j = v_size, c = this.cursor, lb = this.limit_backward, common_i = 0, common_j = 0, first_key_inspected = false;
          Severity: Minor
          Found in plate/static/js/lunr/lunr.stemmer.support.js and 1 other location - About 30 mins to fix
          plate/static/js/lunr/lunr.stemmer.support.js on lines 152..152

          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 45.

          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