Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
854d40ed
Unverified
Commit
854d40ed
authored
Dec 03, 2025
by
Jeffrey Morgan
Committed by
GitHub
Dec 03, 2025
Browse files
ci: restore previous linter rules (#13322)
parent
84a2cedf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
53 deletions
+28
-53
.golangci.yaml
.golangci.yaml
+24
-49
api/examples/chat/main.go
api/examples/chat/main.go
+4
-4
No files found.
.golangci.yaml
View file @
854d40ed
version
:
"
2"
linters
:
default
:
none
enable
:
-
asasalint
-
bidichk
-
bodyclose
-
containedctx
-
copyloopvar
-
errcheck
-
errorlint
-
exptostd
-
gocheckcompilerdirectives
-
govet
-
ineffassign
-
intrange
-
makezero
-
misspell
-
modernize
-
nilerr
-
nilnil
-
nolintlint
-
nosprintfhostport
-
perfsprint
-
prealloc
-
sloglint
-
staticcheck
-
unconvert
-
unused
-
usestdlibvars
-
usetesting
-
wastedassign
-
whitespace
disable
:
-
errcheck
-
usestdlibvars
settings
:
errcheck
:
exclude-functions
:
-
fmt.Fprintf
perfsprint
:
strconcat
:
false
concat-loop
:
false
govet
:
disable
:
-
unusedresult
staticcheck
:
checks
:
-
all
# Using a deprecated function, variable, constant or field.
# https://staticcheck.dev/docs/checks/#SA1019
-
-QF*
# disable quick fix suggestions
-
-SA1019
# Incorrect or missing package comment.
# https://staticcheck.dev/docs/checks/#ST1000
-
-ST1000
# Poorly chosen identifier.
# https://staticcheck.dev/docs/checks/#ST1003
-
-ST1003
# The documentation of an exported function should start with the function's name.
# https://staticcheck.dev/docs/checks/#ST1020
-
-ST1020
# The documentation of an exported type should start with type's name.
# https://staticcheck.dev/docs/checks/#ST1021
-
-ST1021
# The documentation of an exported variable or constant should start with variable's name.
# https://staticcheck.dev/docs/checks/#ST1022
-
-ST1022
usestdlibvars
:
http-method
:
false
http-status-code
:
false
-
-ST1000
# package comment format
-
-ST1003
# underscores in package names
-
-ST1005
# error strings should not be capitalized
-
-ST1012
# error var naming (ErrFoo)
-
-ST1016
# receiver name consistency
-
-ST1020
# comment on exported function format
-
-ST1021
# comment on exported type format
-
-ST1022
# comment on exported var format
-
-ST1023
# omit type from declaration
severity
:
default
:
error
rules
:
-
linters
:
-
gofmt
-
goimports
-
intrange
severity
:
info
formatters
:
enable
:
-
gci
-
gofmt
-
gofumpt
settings
:
gci
:
sections
:
-
standard
-
default
-
localmodule
api/examples/chat/main.go
View file @
854d40ed
...
...
@@ -15,19 +15,19 @@ func main() {
}
messages
:=
[]
api
.
Message
{
api
.
Message
{
{
Role
:
"system"
,
Content
:
"Provide very brief, concise responses"
,
},
api
.
Message
{
{
Role
:
"user"
,
Content
:
"Name some unusual animals"
,
},
api
.
Message
{
{
Role
:
"assistant"
,
Content
:
"Monotreme, platypus, echidna"
,
},
api
.
Message
{
{
Role
:
"user"
,
Content
:
"which of these is the most dangerous?"
,
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment