builtinnya/fuzzlogia

View on GitHub

Showing 12 of 12 total issues

File onkundic.js has 33373 lines of code (exceeds 250 allowed). Consider refactoring.
Open

// This file is automatically generated by kanjidic.js

module.exports = {
  "亜": [
    "あ",
Severity: Major
Found in src/onkundic.js - About 3 mos to fix

    Function parseEntry has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

    var parseEntry = function parseEntry(fieldDefs, entry) {
      fieldDefs = _.clone(fieldDefs);
    
      var fields = entry.match(/(\{[^{}]+\})|([^\s]+)/g);
      var args = [];
    Severity: Minor
    Found in tools/kanjidic.js - About 3 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 parseEntry has 54 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    var parseEntry = function parseEntry(fieldDefs, entry) {
      fieldDefs = _.clone(fieldDefs);
    
      var fields = entry.match(/(\{[^{}]+\})|([^\s]+)/g);
      var args = [];
    Severity: Major
    Found in tools/kanjidic.js - About 2 hrs to fix

      Function search has 40 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      var search = function search(query, bucket, extractor, options) {
        if (!query) return [];
      
        options = utils.merge({ threshold: 0 }, options);
      
      
      Severity: Minor
      Found in src/fuzzlogia.js - About 1 hr to fix

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

          var result = fields.reduce(function(acc, field, index) {
            var defpair = (function() {
              // Finds positional field definition
              if (fieldDefs[index]) {
                return (function(posDef) {
        Severity: Minor
        Found in tools/kanjidic.js - About 1 hr to fix

          Function fn has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              fn: function(args) {
          
                var isOnReading = function isOnReading(field) {
                  return hirakata.isKata(field.replace(/[\-\.]/g, ''));
                };
          Severity: Minor
          Found in tools/kanjidic.js - About 1 hr to fix

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

                  obj.nanoriReadings = _.chain(args).dropWhile(_.negate(isNanoriMarker)).slice(1).takeWhile(isKunReading).value();
            Severity: Major
            Found in tools/kanjidic.js and 1 other location - About 1 hr to fix
            tools/kanjidic.js on lines 156..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 58.

            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

                  obj.radicalNames = _.chain(args).dropWhile(_.negate(isRadicalNameMarker)).slice(1).takeWhile(isKunReading).value();
            Severity: Major
            Found in tools/kanjidic.js and 1 other location - About 1 hr to fix
            tools/kanjidic.js on lines 155..155

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

            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

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

            var main = function main(argv) {
              fetch(repos.kanjiDic)
                .then(function(body) {
                  return toUtf8(body, 'euc-jp');
                })
            Severity: Minor
            Found in tools/kanjidic.js - About 1 hr to fix

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

              var toKata = function toKata(hiraStr) {
                return _mapStr(hiraStr, function(hira) {
                  var kata = hiraToKataDict[hira];
                  if (kata) return kata;
                  else return hira;
              Severity: Major
              Found in src/hirakata.js and 1 other location - About 1 hr to fix
              src/hirakata.js on lines 82..88

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

              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 toHira = function toHira(kataStr) {
                return _mapStr(kataStr, function(kata) {
                  var hira = kataToHiraDict[kata];
                  if (hira) return hira;
                  else return kata;
              Severity: Major
              Found in src/hirakata.js and 1 other location - About 1 hr to fix
              src/hirakata.js on lines 68..74

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

              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

              Function convert has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

              var convert = function convert(romajiStr) {
                romajiStr = romajiStr.toLowerCase();
              
                var len = romajiStr.length;
                var currentIndex = 0;
              Severity: Minor
              Found in src/romaji2hira.js - About 45 mins 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

              Severity
              Category
              Status
              Source
              Language