badgeteam/Hatchery

View on GitHub

Showing 536 of 536 total issues

Function onload has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
Open

window.onload = function () {
    const ext = document.getElementById('extension');
    let langmode = 'python';
    if (ext) {
        if (ext.getAttribute('value') === 'json') {
Severity: Minor
Found in resources/assets/js/app.js - About 6 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 onload has 155 lines of code (exceeds 25 allowed). Consider refactoring.
Open

window.onload = function () {
    const ext = document.getElementById('extension');
    let langmode = 'python';
    if (ext) {
        if (ext.getAttribute('value') === 'json') {
Severity: Major
Found in resources/assets/js/app.js - About 6 hrs to fix

    File illustrated-layout.blade.php has 388 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <!DOCTYPE html>
    <html lang="en">
        <head>
            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    Severity: Minor
    Found in resources/views/errors/illustrated-layout.blade.php - About 5 hrs to fix

      Project has 30 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class Project extends Model
      {
          use SoftDeletes;
          use HasFactory;
      
      
      Severity: Minor
      Found in app/Models/Project.php - About 3 hrs to fix

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

        <?php
        
        declare(strict_types=1);
        
        namespace App\Models;
        Severity: Major
        Found in app/Models/Vote.php and 1 other location - About 3 hrs to fix
        app/Models/Warning.php on lines 1..97

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

        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

        <?php
        
        declare(strict_types=1);
        
        namespace App\Models;
        Severity: Major
        Found in app/Models/Warning.php and 1 other location - About 3 hrs to fix
        app/Models/Vote.php on lines 1..99

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

        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

        File ProjectsController.php has 310 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        <?php
        
        declare(strict_types=1);
        
        namespace App\Http\Controllers;
        Severity: Minor
        Found in app/Http/Controllers/ProjectsController.php - About 3 hrs to fix

          The class PublicController has 12 public methods. Consider refactoring PublicController to keep number of public methods under 10.
          Open

          class PublicController extends Controller
          {
              /**
               * Fields allowed for ordering the main view ;).
               *

          TooManyPublicMethods

          Since: 0.1

          A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

          By default it ignores methods starting with 'get' or 'set'.

          Example

          Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

          The class FilesController has 12 public methods. Consider refactoring FilesController to keep number of public methods under 10.
          Open

          class FilesController extends Controller
          {
              /**
               * Create a new controller instance.
               */

          TooManyPublicMethods

          Since: 0.1

          A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

          By default it ignores methods starting with 'get' or 'set'.

          Example

          Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

          The class Project has 12 public methods. Consider refactoring Project to keep number of public methods under 10.
          Open

          class Project extends Model
          {
              use SoftDeletes;
              use HasFactory;
          
          
          Severity: Minor
          Found in app/Models/Project.php by phpmd

          TooManyPublicMethods

          Since: 0.1

          A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

          By default it ignores methods starting with 'get' or 'set'.

          Example

          Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

          The class ProjectsController has an overall complexity of 57 which is very high. The configured complexity threshold is 50.
          Open

          class ProjectsController extends Controller
          {
              /**
               * Create a new controller instance.
               */

          The class Project has an overall complexity of 59 which is very high. The configured complexity threshold is 50.
          Open

          class Project extends Model
          {
              use SoftDeletes;
              use HasFactory;
          
          
          Severity: Minor
          Found in app/Models/Project.php by phpmd

          The class ProjectsController has 14 public methods. Consider refactoring ProjectsController to keep number of public methods under 10.
          Open

          class ProjectsController extends Controller
          {
              /**
               * Create a new controller instance.
               */

          TooManyPublicMethods

          Since: 0.1

          A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

          By default it ignores methods starting with 'get' or 'set'.

          Example

          Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

          File Project.php has 300 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          <?php
          
          declare(strict_types=1);
          
          namespace App\Models;
          Severity: Minor
          Found in app/Models/Project.php - About 3 hrs to fix

            File app.js has 298 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            /* global require */
            
            /**
             * First we will load all of this project's JavaScript dependencies which
             * includes Vue and other libraries. It is a great starting point when
            Severity: Minor
            Found in resources/assets/js/app.js - About 3 hrs to fix

              ProjectsController has 23 functions (exceeds 20 allowed). Consider refactoring.
              Open

              class ProjectsController extends Controller
              {
                  /**
                   * Create a new controller instance.
                   */
              Severity: Minor
              Found in app/Http/Controllers/ProjectsController.php - About 2 hrs to fix

                Function pixelToHexA has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
                Open

                window.pixelToHexA = function (rgba) {
                    let remove = 5;
                    if (rgba.indexOf('rgba') === -1) {
                        remove = 4;
                    }
                Severity: Minor
                Found in resources/assets/js/app.js - About 2 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

                File PublicController.php has 257 lines of code (exceeds 250 allowed). Consider refactoring.
                Open

                <?php
                
                declare(strict_types=1);
                
                namespace App\Http\Controllers;
                Severity: Minor
                Found in app/Http/Controllers/PublicController.php - About 2 hrs to fix

                  Function pixelToHexA has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  window.pixelToHexA = function (rgba) {
                      let remove = 5;
                      if (rgba.indexOf('rgba') === -1) {
                          remove = 4;
                      }
                  Severity: Minor
                  Found in resources/assets/js/app.js - About 1 hr to fix

                    Avoid excessively long class names like CreateCategoriesTableAlterProjectsAddCategory. Keep class name length under 40.
                    Open

                    class CreateCategoriesTableAlterProjectsAddCategory extends Migration
                    {
                        /**
                         * Run the migrations.
                         *

                    LongClassName

                    Since: 2.9

                    Detects when classes or interfaces are declared with excessively long names.

                    Example

                    class ATooLongClassNameThatHintsAtADesignProblem {
                    
                    }
                    
                    interface ATooLongInterfaceNameThatHintsAtADesignProblem {
                    
                    }

                    Source https://phpmd.org/rules/naming.html#longclassname

                    Severity
                    Category
                    Status
                    Source
                    Language