Skip to content

Commit

Permalink
fix: dont validate doc strings by default (#2470)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Jun 3, 2024
1 parent 9e5deff commit 39ec9ce
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions cli/cli/commands/lint/lint.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@ import (
"context"
_ "embed"
"fmt"
"io"
"os"
"os/exec"
"path"
"path/filepath"

"github.com/kurtosis-tech/kurtosis-package-indexer/server/crawler"
"github.com/kurtosis-tech/kurtosis/cli/cli/command_framework/lowlevel"
"github.com/kurtosis-tech/kurtosis/cli/cli/command_framework/lowlevel/args"
"github.com/kurtosis-tech/kurtosis/cli/cli/command_framework/lowlevel/flags"
"github.com/kurtosis-tech/kurtosis/cli/cli/command_str_consts"
"github.com/kurtosis-tech/stacktrace"
"github.com/sirupsen/logrus"
"io"
"os"
"os/exec"
"path"
"path/filepath"
)

const (
Expand All @@ -29,7 +30,7 @@ const (

checkDocStringFlagKey = "check-docstring"
checkDocStringFlagShortKey = "c"
checkDocStringDefaultValue = "true"
checkDocStringDefaultValue = "false"

pyBlackDockerImage = "pyfound/black:23.9.1"
dockerRunCmd = "run"
Expand Down

0 comments on commit 39ec9ce

Please sign in to comment.