lancetw/react-isomorphic-bundle

View on GitHub
src/shared/components/ADContent.js

Summary

Maintainability
A
2 hrs
Test Coverage

Useless constructor.
Open

  constructor (props) {
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

Disallow unnecessary constructor (no-useless-constructor)

ES2015 provides a default class constructor if one is not specified. As such, it is unnecessary to provide an empty constructor or one that simply delegates into its parent class, as in the following examples:

class A {
    constructor () {
    }
}

class A extends B {
    constructor (value) {
      super(value);
    }
}

Rule Details

This rule flags class constructors that can be safely removed without changing how the class works.

Examples

Examples of incorrect code for this rule:

/*eslint no-useless-constructor: "error"*/
/*eslint-env es6*/

class A {
    constructor () {
    }
}

class A extends B {
    constructor (...args) {
      super(...args);
    }
}

Examples of correct code for this rule:

/*eslint no-useless-constructor: "error"*/

class A { }

class A {
    constructor () {
        doSomething();
    }
}

class A extends B {
    constructor() {
        super('foo');
    }
}

class A extends B {
    constructor() {
        super();
        doSomething();
    }
}

When Not To Use It

If you don't want to be notified about unnecessary constructors, you can safely disable this rule. Source: http://eslint.org/docs/rules/

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

        <MediaQuery maxDeviceWidth={374}>
           <AD path={path1} responsive={responsive} canBeLower={canBeLower}
            dimensions={dimensions1} />
        </MediaQuery>
Severity: Major
Found in src/shared/components/ADContent.js and 1 other location - About 1 hr to fix
src/shared/components/ADContent.js on lines 51..54

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

        <MediaQuery minDeviceWidth={375}>
          <AD path={path2} responsive={responsive} canBeLower={canBeLower}
            dimensions={dimensions2} />
        </MediaQuery>
Severity: Major
Found in src/shared/components/ADContent.js and 1 other location - About 1 hr to fix
src/shared/components/ADContent.js on lines 47..50

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

JSX not allowed in files with extension '.js'
Open

      <div className="row">
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

Expected indentation of 13 space characters but found 12.
Open

            dimensions={dimensions1} />
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

Expected indentation of 10 space characters but found 11.
Open

           <AD path={path1} responsive={responsive} canBeLower={canBeLower}
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

Expected indentation of 10 space characters but found 8.
Open

        <MediaQuery maxDeviceWidth={374}>
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

The closing bracket must be aligned with the line containing the opening tag (expected column 12 on the next line)
Open

            dimensions={dimensions1} />
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

Property should be placed on a new line
Open

          <AD path={path2} responsive={responsive} canBeLower={canBeLower}
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

Property should be placed on a new line
Open

           <AD path={path1} responsive={responsive} canBeLower={canBeLower}
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

Expected indentation of 10 space characters but found 8.
Open

        <MediaQuery minDeviceWidth={375}>
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

Prop type object is forbidden
Open

    collect: PropTypes.object.isRequired
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

The closing bracket must be aligned with the line containing the opening tag (expected column 11 on the next line)
Open

            dimensions={dimensions2} />
Severity: Minor
Found in src/shared/components/ADContent.js by eslint

For more information visit Source: http://eslint.org/docs/rules/

There are no issues that match your filters.

Category
Status