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.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ An annotated function must not mutate caller-visible state through parameters or
Standard `go install` installation,

```sh
GOPRIVATE=github.com/phasemerge go install github.com/phasemerge/phase-shift-go/cmd/phase-shift@latest
GOPRIVATE=github.com/phasemerge go install github.com/phasemerge/go-phase-shift/cmd/phase-shift@latest
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion cmd/phase-shift/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/phasemerge/phase-shift-go/internal/analysis/nonmutating"
"github.com/phasemerge/go-phase-shift/internal/analysis/nonmutating"
"golang.org/x/tools/go/analysis/singlechecker"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/phasemerge/phase-shift-go
module github.com/phasemerge/go-phase-shift

go 1.26

Expand Down
6 changes: 3 additions & 3 deletions internal/analysis/nonmutating/nonmutating.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"go/ast"
"go/types"

"github.com/phasemerge/phase-shift-go/internal/directive"
"github.com/phasemerge/phase-shift-go/internal/directive/enum"
"github.com/phasemerge/phase-shift-go/internal/report"
"github.com/phasemerge/go-phase-shift/internal/directive"
"github.com/phasemerge/go-phase-shift/internal/directive/enum"
"github.com/phasemerge/go-phase-shift/internal/report"
"golang.org/x/tools/go/analysis"
"golang.org/x/tools/go/analysis/passes/buildssa"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/analysis/nonmutating/nonmutating_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package nonmutating_test
import (
"testing"

"github.com/phasemerge/phase-shift-go/internal/analysis/nonmutating"
"github.com/phasemerge/go-phase-shift/internal/analysis/nonmutating"
"golang.org/x/tools/go/analysis/analysistest"
)

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

"github.com/phasemerge/phase-shift-go/internal/directive/enum"
"github.com/phasemerge/go-phase-shift/internal/directive/enum"
)

const Prefix = "//phase:"
Expand Down
2 changes: 1 addition & 1 deletion internal/directive/directive_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package directive_test
import (
"testing"

"github.com/phasemerge/phase-shift-go/internal/directive"
"github.com/phasemerge/go-phase-shift/internal/directive"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/report/report_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package report_test
import (
"testing"

"github.com/phasemerge/phase-shift-go/internal/report"
"github.com/phasemerge/go-phase-shift/internal/report"
"github.com/stretchr/testify/assert"
)

Expand Down
Loading