Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ koryluslint md [-base=<ref>] [--all] [--write] [paths...]

各プロジェクトはバージョンを固定して `koryluslint` を取得します。

- Go プロジェクト: `go.mod` の tool ディレクティブで `github.com/korylus/korylus-tools/cmd/koryluslint` を固定し、`go tool koryluslint ...` で実行する
- Go プロジェクト: `go.mod` の tool ディレクティブで `github.com/korylus/tools/cmd/koryluslint` を固定し、`go tool koryluslint ...` で実行する
- 非 Go プロジェクト: mise の `go:` バックエンドで固定取得する

## 開発
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For `md`, `--all` checks every `.md` file in full instead of only changed lines,

Each project pins a version of `koryluslint` to fetch it.

- Go projects: pin `github.com/korylus/korylus-tools/cmd/koryluslint` with the `tool` directive in `go.mod` and run it with `go tool koryluslint ...`.
- Go projects: pin `github.com/korylus/tools/cmd/koryluslint` with the `tool` directive in `go.mod` and run it with `go tool koryluslint ...`.
- Non-Go projects: pin it with mise's `go:` backend.

## Development
Expand Down
4 changes: 2 additions & 2 deletions cmd/koryluslint/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"io"
"os"

"github.com/korylus/korylus-tools/internal/comment"
"github.com/korylus/korylus-tools/internal/md"
"github.com/korylus/tools/internal/comment"
"github.com/korylus/tools/internal/md"
)

// usageText is shown for invalid arguments or -h.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/korylus/korylus-tools
module github.com/korylus/tools

go 1.26
2 changes: 1 addition & 1 deletion internal/comment/comment.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import (
"strconv"
"strings"

"github.com/korylus/korylus-tools/internal/cli"
"github.com/korylus/tools/internal/cli"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion internal/md/md.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import (
"strings"
"unicode"

"github.com/korylus/korylus-tools/internal/cli"
"github.com/korylus/tools/internal/cli"
)

const (
Expand Down