Ephigenia/circleboard2

View on GitHub

Showing 4 of 13 total issues

Function ngOnInit has 45 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  public ngOnInit() {
    const config = this.configService.read();
    this.theme = config.theme;
    this.showConfigMessage = !config.apiToken && !config.gitlabProjects;

Severity: Minor
Found in src/app/recent-builds/recent-builds.component.ts - About 1 hr to fix

    Function groupByWorkflows has 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      public groupByWorkflows(builds: any[]) {
        // iterate over all builds and put the jobs which belong to the same
        // workflow into a "jobs" attribuet of that build
        const groupedBuilds = builds.reduce((acc, build) => {
          if (!build.workflows) {
    Severity: Minor
    Found in src/app/circle-ci.service.ts - About 1 hr to fix

      Function exports has 43 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      module.exports = function (config) {
      
        config.set({
      
          // increasing the timeout limits to reduce the cases where circleci fails
      Severity: Minor
      Found in karma.conf.js - About 1 hr to fix

        Function groupBuildsByPipeline has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

          public groupBuildsByPipeline(builds) {
            const groupedBuilds = builds.reduce((acc, build) => {
              if (!build.pipeline || !build.pipeline.id) {
                acc.push(build);
                return acc;
        Severity: Minor
        Found in src/app/gitlab-ci.service.ts - About 1 hr 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