gardejo/js-kancolle-logistics-visualizer

View on GitHub

Showing 80 of 113 total issues

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

kclv.Tokenizer.KCRDB.Base = function(kind) {
    kclv.Tokenizer.Base.call(this, kind, false);

    return;
};
Severity: Major
Found in lib/tokenizer.js and 2 other locations - About 50 mins to fix
lib/tokenizer.js on lines 518..522
lib/tokenizer.js on lines 718..722

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

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 3 locations. Consider refactoring.
Open

kclv.Tokenizer.SandanshikiKanpan.Base = function(kind) {
    kclv.Tokenizer.Base.call(this, kind, false);

    return;
};
Severity: Major
Found in lib/tokenizer.js and 2 other locations - About 50 mins to fix
lib/tokenizer.js on lines 396..400
lib/tokenizer.js on lines 518..522

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

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 3 locations. Consider refactoring.
Open

kclv.Tokenizer.Logbook.Base = function(kind) {
    kclv.Tokenizer.Base.call(this, kind, true);

    return;
};
Severity: Major
Found in lib/tokenizer.js and 2 other locations - About 50 mins to fix
lib/tokenizer.js on lines 396..400
lib/tokenizer.js on lines 718..722

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

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

kclv.Relation.Base.prototype.reduce = function(reducer, opt_initialValue) {
    return this.relation.reduce(reducer, opt_initialValue);
};
Severity: Minor
Found in lib/relation.js and 1 other location - About 45 mins to fix
lib/relation.js on lines 267..269

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

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

kclv.Relation.Base.prototype.map = function(mapper, opt_thisObject) {
    return this.relation.map(mapper, opt_thisObject);
};
Severity: Minor
Found in lib/relation.js and 1 other location - About 45 mins to fix
lib/relation.js on lines 301..303

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

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

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

    var configuration = kclv.Configuration.get('chart.Ships'),
        option =
            kclv.Chart.Base.prototype.buildOption.call(this, configuration);
Severity: Minor
Found in lib/chart.ship.js and 1 other location - About 40 mins to fix
lib/chart.ship.js on lines 64..66

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

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

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

    var configuration = kclv.Configuration.get('chart.Ships'),
        option =
            kclv.Chart.Base.prototype.buildOption.call(this, configuration);
Severity: Minor
Found in lib/chart.ship.js and 1 other location - About 40 mins to fix
lib/chart.ship.js on lines 176..178

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

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

kclv.Chart.Sankey = function(table) {
    kclv.Chart.Base.call(this, 'Sankey', table);

    return;
};
Severity: Major
Found in lib/chart.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 535..539
lib/chart.js on lines 555..559
lib/chart.js on lines 575..579
lib/chart.js on lines 595..599
lib/chart.material.js on lines 22..26
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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 3 locations. Consider refactoring.
Open

kclv.Table.Base.prototype.maximum = function(indices) {
    return this.relation.maximum(indices);
};
Severity: Minor
Found in lib/table.js and 2 other locations - About 40 mins to fix
lib/relation.js on lines 250..252
lib/table.js on lines 200..202

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 16 locations. Consider refactoring.
Open

kclv.Chart.SteppedArea = function(table) {
    kclv.Chart.Base.call(this, 'SteppedArea', table);

    return;
};
Severity: Major
Found in lib/chart.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 555..559
lib/chart.js on lines 575..579
lib/chart.js on lines 595..599
lib/chart.material.js on lines 22..26
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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 16 locations. Consider refactoring.
Open

kclv.Chart.Timeline = function(table) {
    kclv.Chart.Base.call(this, 'Timeline', table);

    return;
};
Severity: Major
Found in lib/chart.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 535..539
lib/chart.js on lines 575..579
lib/chart.js on lines 595..599
lib/chart.material.js on lines 22..26
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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 16 locations. Consider refactoring.
Open

kclv.Chart.Diff = function(table) {
    kclv.Chart.Base.call(this, 'Diff', table);

    return;
};
Severity: Major
Found in lib/chart.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 535..539
lib/chart.js on lines 555..559
lib/chart.js on lines 575..579
lib/chart.js on lines 595..599
lib/chart.material.js on lines 22..26
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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 16 locations. Consider refactoring.
Open

kclv.Chart.Bubble = function(table) {
    kclv.Chart.Base.call(this, 'Bubble', table);

    return;
};
Severity: Major
Found in lib/chart.ship.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 535..539
lib/chart.js on lines 555..559
lib/chart.js on lines 575..579
lib/chart.js on lines 595..599
lib/chart.material.js on lines 22..26
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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 16 locations. Consider refactoring.
Open

kclv.Chart.Trendline = function(table) {
    kclv.Chart.Base.call(this, 'Trendline', table);

    return;
};
Severity: Major
Found in lib/chart.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 535..539
lib/chart.js on lines 555..559
lib/chart.js on lines 575..579
lib/chart.material.js on lines 22..26
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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 16 locations. Consider refactoring.
Open

kclv.Chart.Scatter = function(table) {
    kclv.Chart.Base.call(this, 'Scatter', table);

    return;
};
Severity: Major
Found in lib/chart.ship.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 535..539
lib/chart.js on lines 555..559
lib/chart.js on lines 575..579
lib/chart.js on lines 595..599
lib/chart.material.js on lines 22..26
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112

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 16 locations. Consider refactoring.
Open

kclv.Chart.Candlestick = function(table) {
    kclv.Chart.Base.call(this, 'Candlestick', table);

    return;
};
Severity: Major
Found in lib/chart.material.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 535..539
lib/chart.js on lines 555..559
lib/chart.js on lines 575..579
lib/chart.js on lines 595..599
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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

    this.indicesOf = {
        filter     : [0, 2, 3, 4, 5, 6, 7, 8, 9],
        timeStamp  : 0,
        integerize : [1, 2, 3, 4, 5, 6, 7, 8]
    };
Severity: Minor
Found in lib/tokenizer.js and 1 other location - About 40 mins to fix
lib/tokenizer.js on lines 260..264

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 16 locations. Consider refactoring.
Open

kclv.Chart.Line = function(table) {
    kclv.Chart.Base.call(this, 'Line', table);

    return;
};
Severity: Major
Found in lib/chart.material.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 535..539
lib/chart.js on lines 555..559
lib/chart.js on lines 575..579
lib/chart.js on lines 595..599
lib/chart.material.js on lines 22..26
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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

    this.indicesOf = {
        filter     : [0, 1, 2, 3, 4, 5, 6, 7, 8],
        timeStamp  : 0,
        integerize : [1, 2, 3, 4, 5, 6, 7, 8]
    };
Severity: Minor
Found in lib/tokenizer.js and 1 other location - About 40 mins to fix
lib/tokenizer.js on lines 640..644

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 16 locations. Consider refactoring.
Open

kclv.Chart.TreeMap = function(table) {
    kclv.Chart.Base.call(this, 'TreeMap', table);

    return;
};
Severity: Major
Found in lib/chart.js and 15 other locations - About 40 mins to fix
lib/chart.js on lines 373..377
lib/chart.js on lines 393..397
lib/chart.js on lines 435..439
lib/chart.js on lines 455..459
lib/chart.js on lines 475..479
lib/chart.js on lines 495..499
lib/chart.js on lines 515..519
lib/chart.js on lines 535..539
lib/chart.js on lines 555..559
lib/chart.js on lines 595..599
lib/chart.material.js on lines 22..26
lib/chart.material.js on lines 105..109
lib/chart.ship.js on lines 21..25
lib/chart.ship.js on lines 108..112
lib/chart.ship.js on lines 129..133

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

Severity
Category
Status
Source
Language