diff --git a/.golangci.yml b/.golangci.yml index 1570663..2648c32 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -50,8 +50,6 @@ linters: # Check for duplicate code. You may want to disable this with // nolint:dupl if the source code is the same, but # legitimately exists for different reasons. - dupl - # Check for pointers in loops. This is a typical bug source. - - exportloopref # Enforce a reasonable function length of 60 lines or 40 instructions. In very rare cases you may want to disable # this with // nolint:funlen if there is absolutely no way to split the function in question. - funlen @@ -91,7 +89,6 @@ linters-settings: - golang.org/ govet: enable-all: true - check-shadowing: false disable: # We don't care about variable shadowing. - shadow diff --git a/go.mod b/go.mod index f40b37f..daaed3b 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( go.arcalot.io/assert v1.8.0 go.arcalot.io/lang v1.1.0 go.arcalot.io/log/v2 v2.2.0 - go.flow.arcalot.io/pluginsdk v0.14.2 + go.flow.arcalot.io/pluginsdk v0.14.3 ) require ( diff --git a/go.sum b/go.sum index 8329c06..65efaf8 100644 --- a/go.sum +++ b/go.sum @@ -4,8 +4,8 @@ go.arcalot.io/lang v1.1.0 h1:ugglRKpd3qIMkdghAjKJxsziIgHm8QpxrzZPSXoa08I= go.arcalot.io/lang v1.1.0/go.mod h1:2BZJO4csY7NnN/Nf1+eTdIQH4A2vxtOMneaO+PJl+Co= go.arcalot.io/log/v2 v2.2.0 h1:a4wVAqQ/6zFyEG6I9Dnd7eFA52KKGaBK3hj9PgZ/e0c= go.arcalot.io/log/v2 v2.2.0/go.mod h1:h/Hlyz6wH+mjRUKdL3W2fG2oMrAm2qgPxb0rNJJDUuY= -go.flow.arcalot.io/pluginsdk v0.14.2 h1:WVVvrJ7KGqkxV2w93CwYx37iVAIlT0lzOZelatDRBC0= -go.flow.arcalot.io/pluginsdk v0.14.2/go.mod h1:BL2bFNQN+Qn9ZQavJ38gIXBukX0FyXdJrs99EiyWqhc= +go.flow.arcalot.io/pluginsdk v0.14.3 h1:LlS50n6udj0SDcjfNxZ1eCSy5McDbuZryLx5EBhC1QA= +go.flow.arcalot.io/pluginsdk v0.14.3/go.mod h1:+HTra2Nh2e+RQ1ispT7QbO0MXYVJmKMeeuAWdHsAA1s= golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc= golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=