Showing 348 of 348 total issues

Method runTaskRunner.Run has 5 return statements (exceeds 4 allowed).
Open

func (r *runTaskRunner) Run(context *RunContext) bool {
    r.logger.Info(
        r.prefix,
        "Beginning task",
    )
Severity: Major
Found in runner/run_task.go - About 35 mins to fix

    Method Loader.readConfigs has 5 return statements (exceeds 4 allowed).
    Open

    func (l *Loader) readConfigs(path string) error {
        if _, ok := l.loadedConfigs[path]; ok {
            return nil
        }
    
    
    Severity: Major
    Found in loader/loader.go - About 35 mins to fix

      Function Validate has 5 return statements (exceeds 4 allowed).
      Open

      func Validate(name string, data []byte) error {
          schema, err := getSchema(name)
          if err != nil {
              return err
          }
      Severity: Major
      Found in loader/schema/schema.go - About 35 mins to fix

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

        func (s *buildTaskCommandBuilderState) addLabelOptions(cb *command.Builder) error {
            for _, label := range s.task.Labels {
                expanded, err := s.env.ExpandString(label)
                if err != nil {
                    return err
        Severity: Minor
        Found in runner/build_task.go and 1 other location - About 30 mins to fix
        runner/build_task.go on lines 123..134

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

        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

        func (s *buildTaskCommandBuilderState) addTagOptions(cb *command.Builder) error {
            for _, tag := range s.task.Tags {
                expanded, err := s.env.ExpandString(tag)
                if err != nil {
                    return err
        Severity: Minor
        Found in runner/build_task.go and 1 other location - About 30 mins to fix
        runner/build_task.go on lines 136..147

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

        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

        exported method Builder.SetStdin should have comment or be unexported
        Open

        func (b *Builder) SetStdin(rc io.ReadCloser) {
        Severity: Minor
        Found in command/builder.go by golint

        exported method Options.Merge should have comment or be unexported
        Open

        func (o *Options) Merge(child *Options) {
        Severity: Minor
        Found in config/config.go by golint

        exported method RemoveTask.MarshalJSON should have comment or be unexported
        Open

        func (t *RemoveTask) MarshalJSON() ([]byte, error) {
        Severity: Minor
        Found in config/remove_task.go by golint

        exported type TaskMeta should have comment or be unexported
        Open

            TaskMeta struct {
        Severity: Minor
        Found in config/task.go by golint

        exported method Options.MarshalJSON should have comment or be unexported
        Open

        func (o *Options) MarshalJSON() ([]byte, error) {
        Severity: Minor
        Found in config/config.go by golint

        exported type GCRRegistry should have comment or be unexported
        Open

            GCRRegistry struct {
        Severity: Minor
        Found in config/registry.go by golint

        exported method RemoveTask.GetType should have comment or be unexported
        Open

        func (t *RemoveTask) GetType() string {
        Severity: Minor
        Found in config/remove_task.go by golint

        exported type RunTask should have comment or be unexported
        Open

            RunTask struct {
        Severity: Minor
        Found in config/run_task.go by golint

        exported type RunMode should have comment or be unexported
        Open

            RunMode int
        Severity: Minor
        Found in config/stage.go by golint

        exported function Default should have comment or be unexported
        Open

        func Default() (Environment, error) {
        Severity: Minor
        Found in environment/defaults.go by golint

        exported type Config should have comment or be unexported
        Open

            Config struct {
        Severity: Minor
        Found in config/config.go by golint

        exported method Config.IsPlanDefined should have comment or be unexported
        Open

        func (c *Config) IsPlanDefined(name string) bool {
        Severity: Minor
        Found in config/config.go by golint

        exported type PushTask should have comment or be unexported
        Open

        type PushTask struct {
        Severity: Minor
        Found in config/push_task.go by golint

        exported method ServerRegistry.GetType should have comment or be unexported
        Open

        func (r *ServerRegistry) GetType() string { return "server" }
        Severity: Minor
        Found in config/registry.go by golint

        exported function NewTaskExtendsResolver should have comment or be unexported
        Open

        func NewTaskExtendsResolver(config *Config) *TaskExtendsResolver {
        Severity: Minor
        Found in config/resolver.go by golint
        Severity
        Category
        Status
        Source
        Language