nukeop/nuclear

View on GitHub

Showing 663 of 663 total issues

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

      return {
        source: this.sourceName,
        id: track.id,
        stream: track.audio,
        duration: track.duration,
Severity: Major
Found in packages/core/src/plugins/stream/JamendoPlugin.ts and 1 other location - About 1 hr to fix
packages/core/src/plugins/stream/JamendoPlugin.ts on lines 25..33

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

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

Function init has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    init() {
      if (this.platform.isMac()) {
        const logo = new TouchBarButton({
          icon: touchbarIcons.logo,
          backgroundColor: '#000000'
Severity: Minor
Found in packages/main/src/services/touchbar/index.ts - About 1 hr to fix

    Function listen has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      listen(): void {
        const ipc = this.get<IpcMain>(ipcService);
        const logger = this.get<Logger>($ipcLogger);
    
        this.controllers.forEach((Controller) => {
    Severity: Minor
    Found in packages/main/src/utils/container.ts - About 1 hr to fix

      Function useTrackInfoProps has 37 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export const useTrackInfoProps = () => {
        const dispatch = useDispatch();
        const history = useHistory();
        const queue = useSelector(queueSelector);
        const hasTracks = queue.queueItems.length > 0;
      Severity: Minor
      Found in packages/app/app/containers/PlayerBarContainer/hooks.ts - About 1 hr to fix

        Function useArtistViewProps has 37 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export const useArtistViewProps = () => {
          const dispatch = useDispatch();
          const history = useHistory();
          const { artistId } = useParams<{ artistId: string }>();
          const artistDetails = useSelector(searchSelectors.artistDetails);
        Severity: Minor
        Found in packages/app/app/containers/ArtistViewContainer/hooks.ts - About 1 hr to fix

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

            router
              .post('/stop', (req, res) => {
                rendererWindow.send(IpcEvents.STOP);
                res.send();
              })
          Severity: Major
          Found in packages/main/src/services/http/server/api/player.ts and 6 other locations - About 1 hr to fix
          packages/main/src/services/http/server/api/player.ts on lines 33..38
          packages/main/src/services/http/server/api/player.ts on lines 40..45
          packages/main/src/services/http/server/api/player.ts on lines 47..52
          packages/main/src/services/http/server/api/player.ts on lines 54..59
          packages/main/src/services/http/server/api/player.ts on lines 68..73
          packages/main/src/services/http/server/api/player.ts on lines 75..80

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

          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

            router
              .post('/play', (req, res) => {
                rendererWindow.send(IpcEvents.PLAY);
                res.send();
              })
          Severity: Major
          Found in packages/main/src/services/http/server/api/player.ts and 6 other locations - About 1 hr to fix
          packages/main/src/services/http/server/api/player.ts on lines 33..38
          packages/main/src/services/http/server/api/player.ts on lines 40..45
          packages/main/src/services/http/server/api/player.ts on lines 47..52
          packages/main/src/services/http/server/api/player.ts on lines 54..59
          packages/main/src/services/http/server/api/player.ts on lines 61..66
          packages/main/src/services/http/server/api/player.ts on lines 75..80

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

          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

            @systemMediaEvent('stop')
            onStop() {
              this.playbackStatus = MprisService.PLAYBACK_STATUS_STOPED;
              this.discord.clear();
              this.window.send(IpcEvents.STOP);
          Severity: Major
          Found in packages/main/src/services/@linux/system-api.ts and 2 other locations - About 1 hr to fix
          packages/main/src/services/@linux/system-api.ts on lines 125..130
          packages/main/src/services/@linux/system-api.ts on lines 132..137

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

          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

            @systemMediaEvent('play')
            onPlay() {
              this.playbackStatus = MprisService.PLAYBACK_STATUS_PLAYING;
              this.discord.play();
              this.window.send(IpcEvents.PLAY);
          Severity: Major
          Found in packages/main/src/services/@linux/system-api.ts and 2 other locations - About 1 hr to fix
          packages/main/src/services/@linux/system-api.ts on lines 132..137
          packages/main/src/services/@linux/system-api.ts on lines 139..144

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

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

              expect(state.queue.queueItems).toEqual([
                expect.objectContaining({
                  artist: 'test artist 1',
                  name: 'test track'
                }),
          packages/app/app/containers/AlbumViewContainer/AlbumViewContainer.test.tsx on lines 81..90
          packages/app/app/containers/PlayQueueContainer/PlayQueueContainer.test.tsx on lines 247..256
          packages/app/app/containers/PlaylistViewContainer/PlaylistViewContainer.test.tsx on lines 54..63

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

          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

            router
              .post('/next', (req, res) => {
                rendererWindow.send(IpcEvents.NEXT);
                res.send();
              })
          Severity: Major
          Found in packages/main/src/services/http/server/api/player.ts and 6 other locations - About 1 hr to fix
          packages/main/src/services/http/server/api/player.ts on lines 40..45
          packages/main/src/services/http/server/api/player.ts on lines 47..52
          packages/main/src/services/http/server/api/player.ts on lines 54..59
          packages/main/src/services/http/server/api/player.ts on lines 61..66
          packages/main/src/services/http/server/api/player.ts on lines 68..73
          packages/main/src/services/http/server/api/player.ts on lines 75..80

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

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

              expect(state.queue.queueItems).toEqual([
                expect.objectContaining({
                  artist: 'test artist',
                  name: 'test track 2'
                }),
          packages/app/app/containers/PlayQueueContainer/PlayQueueContainer.test.tsx on lines 247..256
          packages/app/app/containers/PlaylistViewContainer/PlaylistViewContainer.test.tsx on lines 35..44
          packages/app/app/containers/PlaylistViewContainer/PlaylistViewContainer.test.tsx on lines 54..63

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

          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

            router
              .post('/pause', (req, res) => {
                rendererWindow.send(IpcEvents.PAUSE);
                res.send();
              })
          Severity: Major
          Found in packages/main/src/services/http/server/api/player.ts and 6 other locations - About 1 hr to fix
          packages/main/src/services/http/server/api/player.ts on lines 33..38
          packages/main/src/services/http/server/api/player.ts on lines 40..45
          packages/main/src/services/http/server/api/player.ts on lines 54..59
          packages/main/src/services/http/server/api/player.ts on lines 61..66
          packages/main/src/services/http/server/api/player.ts on lines 68..73
          packages/main/src/services/http/server/api/player.ts on lines 75..80

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

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

              expect(state.queue.queueItems).toEqual([
                expect.objectContaining({
                  artist: 'test artist 1',
                  name: 'test track'
                }),
          packages/app/app/containers/AlbumViewContainer/AlbumViewContainer.test.tsx on lines 81..90
          packages/app/app/containers/PlayQueueContainer/PlayQueueContainer.test.tsx on lines 247..256
          packages/app/app/containers/PlaylistViewContainer/PlaylistViewContainer.test.tsx on lines 35..44

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

          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

            router
              .post('/previous', (req, res) => {
                rendererWindow.send(IpcEvents.PREVIOUS);
                res.send();
              })
          Severity: Major
          Found in packages/main/src/services/http/server/api/player.ts and 6 other locations - About 1 hr to fix
          packages/main/src/services/http/server/api/player.ts on lines 33..38
          packages/main/src/services/http/server/api/player.ts on lines 47..52
          packages/main/src/services/http/server/api/player.ts on lines 54..59
          packages/main/src/services/http/server/api/player.ts on lines 61..66
          packages/main/src/services/http/server/api/player.ts on lines 68..73
          packages/main/src/services/http/server/api/player.ts on lines 75..80

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

          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

            @systemMediaEvent('pause')
            onPause() {
              this.playbackStatus = MprisService.PLAYBACK_STATUS_PAUSED;
              this.discord.pause();
              this.window.send(IpcEvents.PAUSE);
          Severity: Major
          Found in packages/main/src/services/@linux/system-api.ts and 2 other locations - About 1 hr to fix
          packages/main/src/services/@linux/system-api.ts on lines 125..130
          packages/main/src/services/@linux/system-api.ts on lines 139..144

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

          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

                if (payload.afterCursor) {
                  return Promise.resolve({
                    data: [{
                      uuid: 'test1',
                      artist: 'test artist1',
          packages/app/app/containers/ListeningHistoryContainer/ListeningHistoryContainer.test.tsx on lines 133..159

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

          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

            router
              .post('/mute', (req, res) => {
                rendererWindow.send(IpcEvents.MUTE);
                res.send();
              })
          Severity: Major
          Found in packages/main/src/services/http/server/api/player.ts and 6 other locations - About 1 hr to fix
          packages/main/src/services/http/server/api/player.ts on lines 33..38
          packages/main/src/services/http/server/api/player.ts on lines 40..45
          packages/main/src/services/http/server/api/player.ts on lines 47..52
          packages/main/src/services/http/server/api/player.ts on lines 54..59
          packages/main/src/services/http/server/api/player.ts on lines 61..66
          packages/main/src/services/http/server/api/player.ts on lines 68..73

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

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

              expect(state.queue.queueItems).toEqual([
                expect.objectContaining({
                  artist: 'test artist 2',
                  name: 'test track 2'
                }),
          packages/app/app/containers/AlbumViewContainer/AlbumViewContainer.test.tsx on lines 81..90
          packages/app/app/containers/PlaylistViewContainer/PlaylistViewContainer.test.tsx on lines 35..44
          packages/app/app/containers/PlaylistViewContainer/PlaylistViewContainer.test.tsx on lines 54..63

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

          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

            router
              .post('/play-pause', (req, res) => {
                rendererWindow.send(IpcEvents.PLAYPAUSE);
                res.send();
              })
          Severity: Major
          Found in packages/main/src/services/http/server/api/player.ts and 6 other locations - About 1 hr to fix
          packages/main/src/services/http/server/api/player.ts on lines 33..38
          packages/main/src/services/http/server/api/player.ts on lines 40..45
          packages/main/src/services/http/server/api/player.ts on lines 47..52
          packages/main/src/services/http/server/api/player.ts on lines 61..66
          packages/main/src/services/http/server/api/player.ts on lines 68..73
          packages/main/src/services/http/server/api/player.ts on lines 75..80

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

          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