hybridgroup/cylon-ollie

View on GitHub
lib/driver.js

Summary

Maintainability
D
2 days
Test Coverage

Avoid too many return statements within this function.
Open

  return this.MOTORS.Ignore;
Severity: Major
Found in lib/driver.js - About 30 mins to fix

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

    Driver.prototype.streamMotorsBackEmf = function(sps, remove) {
      this.sphero.streamMotorsBackEmf(sps, remove);
      var self = this;
      this.sphero.on("motorsBackEmf", function(data) {
        self.emit("motorsBackEmf", data);
    Severity: Major
    Found in lib/driver.js and 6 other locations - About 2 hrs to fix
    lib/driver.js on lines 166..172
    lib/driver.js on lines 182..188
    lib/driver.js on lines 198..204
    lib/driver.js on lines 214..220
    lib/driver.js on lines 230..236
    lib/driver.js on lines 246..252

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

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

    Driver.prototype.streamGyroscope = function(sps, remove) {
      this.sphero.streamGyroscope(sps, remove);
      var self = this;
      this.sphero.on("gyroscope", function(data) {
        self.emit("gyroscope", data);
    Severity: Major
    Found in lib/driver.js and 6 other locations - About 2 hrs to fix
    lib/driver.js on lines 166..172
    lib/driver.js on lines 182..188
    lib/driver.js on lines 198..204
    lib/driver.js on lines 214..220
    lib/driver.js on lines 230..236
    lib/driver.js on lines 262..268

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

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

    Driver.prototype.streamImuAngles = function(sps, remove) {
      this.sphero.streamImuAngles(sps, remove);
      var self = this;
      this.sphero.on("imuAngles", function(data) {
        self.emit("imuAngles", data);
    Severity: Major
    Found in lib/driver.js and 6 other locations - About 2 hrs to fix
    lib/driver.js on lines 166..172
    lib/driver.js on lines 182..188
    lib/driver.js on lines 198..204
    lib/driver.js on lines 230..236
    lib/driver.js on lines 246..252
    lib/driver.js on lines 262..268

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

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

    Driver.prototype.streamAccelerometer = function(sps, remove) {
      this.sphero.streamAccelerometer(sps, remove);
      var self = this;
      this.sphero.on("accelerometer", function(data) {
        self.emit("accelerometer", data);
    Severity: Major
    Found in lib/driver.js and 6 other locations - About 2 hrs to fix
    lib/driver.js on lines 166..172
    lib/driver.js on lines 182..188
    lib/driver.js on lines 198..204
    lib/driver.js on lines 214..220
    lib/driver.js on lines 246..252
    lib/driver.js on lines 262..268

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

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

    Driver.prototype.streamVelocity = function(sps, remove) {
      this.sphero.streamVelocity(sps, remove);
      var self = this;
      this.sphero.on("velocity", function(data) {
        self.emit("velocity", data);
    Severity: Major
    Found in lib/driver.js and 6 other locations - About 2 hrs to fix
    lib/driver.js on lines 166..172
    lib/driver.js on lines 198..204
    lib/driver.js on lines 214..220
    lib/driver.js on lines 230..236
    lib/driver.js on lines 246..252
    lib/driver.js on lines 262..268

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

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

    Driver.prototype.streamOdometer = function(sps, remove) {
      this.sphero.streamOdometer(sps, remove);
      var self = this;
      this.sphero.on("odometer", function(data) {
        self.emit("odometer", data);
    Severity: Major
    Found in lib/driver.js and 6 other locations - About 2 hrs to fix
    lib/driver.js on lines 182..188
    lib/driver.js on lines 198..204
    lib/driver.js on lines 214..220
    lib/driver.js on lines 230..236
    lib/driver.js on lines 246..252
    lib/driver.js on lines 262..268

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

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

    Driver.prototype.streamAccelOne = function(sps, remove) {
      this.sphero.streamAccelOne(sps, remove);
      var self = this;
      this.sphero.on("accelOne", function(data) {
        self.emit("accelOne", data);
    Severity: Major
    Found in lib/driver.js and 6 other locations - About 2 hrs to fix
    lib/driver.js on lines 166..172
    lib/driver.js on lines 182..188
    lib/driver.js on lines 214..220
    lib/driver.js on lines 230..236
    lib/driver.js on lines 246..252
    lib/driver.js on lines 262..268

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

    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