Skip to content

Commit 769cd51

Browse files
oliveromahonyo.omahony
and
o.omahony
authored
removed gitlab references (#23)
* removed gitlab references on migration back here Co-authored-by: o.omahony <[email protected]>
1 parent fa9f864 commit 769cd51

File tree

6 files changed

+9
-25
lines changed

6 files changed

+9
-25
lines changed

.golangci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ linters:
2121
- errorlint
2222
- ifshort
2323
- paralleltest
24+
- interfacer
25+
- golint
26+
- maligned
27+
- scopelint
2428

2529

2630
# Run options

CODEOWNERS

Lines changed: 0 additions & 10 deletions
This file was deleted.

Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ LINT_BIN := ./bin/golangci-lint
99
SHELL=/bin/bash
1010
.SHELLFLAGS=-c -eo pipefail
1111

12-
export GOPRIVATE=*.f5net.com,gitlab.com/f5
13-
export GOFLAGS=-mod=vendor
14-
1512
#######################################
1613
## Local set up.
1714
#######################################
@@ -37,9 +34,8 @@ deps-upgrade:
3734
#######################################
3835
## Tests, codegen, lint and format.
3936
#######################################
40-
4137
fmt: ; $(info Running goimports...) @
42-
@goimports --local gitswarm.f5net.com/indigo,gitlab.com/f5 -w -e $$(find . -type f -name '*.go' -not -path "./vendor/*")
38+
@goimports -w -e $$(find . -type f -name '*.go' -not -path "./vendor/*")
4339

4440
test: fmt ; $(info Running unit tests...) @
4541
mkdir -p $(RESULTS_DIR)
@@ -99,9 +95,3 @@ clean-force: clean; $(info Cleaning everything...) @
9995
rm -rf $(VENDOR_DIR)/
10096
rm -rf bin/
10197
rm -f go.sum
102-
go clean -cache
103-
go clean -modcache
104-
go clean -testcache
105-
106-
images: build-linux
107-
docker build --rm --no-cache -t $(DOCKER_REGISTRY)/$(PACKAGE):$(DOCKER_TAG) -f Dockerfile .

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"fmt"
1212
"os"
1313

14-
"gitlab.com/f5/nginx/crossplane-go"
14+
"github.com/nginxinc/crossplane-go"
1515
)
1616

1717
func main() {
@@ -43,7 +43,7 @@ import (
4343
"io/ioutil"
4444
"os"
4545

46-
"gitlab.com/f5/nginx/crossplane-go"
46+
"github.com/nginxinc/crossplane-go"
4747
)
4848

4949
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module gitlab.com/f5/nginx/crossplane-go
1+
module github.com/nginxinc/crossplane-go
22

33
go 1.15
44

util_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"testing"
66

7-
. "gitlab.com/f5/nginx/crossplane-go"
7+
. "github.com/nginxinc/crossplane-go"
88
)
99

1010
//nolint:funlen

0 commit comments

Comments
 (0)