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"
version
:
"
2"
linters
:
linters
:
default
:
none
enable
:
enable
:
-
asasalint
-
asasalint
-
bidichk
-
bidichk
-
bodyclose
-
bodyclose
-
containedctx
-
containedctx
-
copyloopvar
-
errcheck
-
errorlint
-
exptostd
-
gocheckcompilerdirectives
-
gocheckcompilerdirectives
-
govet
-
ineffassign
-
intrange
-
intrange
-
makezero
-
makezero
-
misspell
-
misspell
-
modernize
-
nilerr
-
nilerr
-
nilnil
-
nolintlint
-
nolintlint
-
nosprintfhostport
-
nosprintfhostport
-
perfsprint
-
prealloc
-
sloglint
-
staticcheck
-
unconvert
-
unconvert
-
unused
-
usestdlibvars
-
usetesting
-
usetesting
-
wastedassign
-
wastedassign
-
whitespace
-
whitespace
disable
:
-
errcheck
-
usestdlibvars
settings
:
settings
:
errcheck
:
govet
:
exclude-functions
:
disable
:
-
fmt.Fprintf
-
unusedresult
perfsprint
:
strconcat
:
false
concat-loop
:
false
staticcheck
:
staticcheck
:
checks
:
checks
:
-
all
-
all
# Using a deprecated function, variable, constant or field.
-
-QF*
# disable quick fix suggestions
# https://staticcheck.dev/docs/checks/#SA1019
-
-SA1019
-
-SA1019
# Incorrect or missing package comment.
-
-ST1000
# package comment format
# https://staticcheck.dev/docs/checks/#ST1000
-
-ST1003
# underscores in package names
-
-ST1000
-
-ST1005
# error strings should not be capitalized
# Poorly chosen identifier.
-
-ST1012
# error var naming (ErrFoo)
# https://staticcheck.dev/docs/checks/#ST1003
-
-ST1016
# receiver name consistency
-
-ST1003
-
-ST1020
# comment on exported function format
# The documentation of an exported function should start with the function's name.
-
-ST1021
# comment on exported type format
# https://staticcheck.dev/docs/checks/#ST1020
-
-ST1022
# comment on exported var format
-
-ST1020
-
-ST1023
# omit type from declaration
# The documentation of an exported type should start with type's name.
severity
:
# https://staticcheck.dev/docs/checks/#ST1021
default
:
error
-
-ST1021
rules
:
# The documentation of an exported variable or constant should start with variable's name.
-
linters
:
# https://staticcheck.dev/docs/checks/#ST1022
-
gofmt
-
-ST1022
-
goimports
usestdlibvars
:
-
intrange
http-method
:
false
severity
:
info
http-status-code
:
false
formatters
:
formatters
:
enable
:
enable
:
-
gci
-
gofmt
-
gofmt
-
gofumpt
-
gofumpt
settings
:
gci
:
sections
:
-
standard
-
default
-
localmodule
api/examples/chat/main.go
View file @
854d40ed
...
@@ -15,19 +15,19 @@ func main() {
...
@@ -15,19 +15,19 @@ func main() {
}
}
messages
:=
[]
api
.
Message
{
messages
:=
[]
api
.
Message
{
api
.
Message
{
{
Role
:
"system"
,
Role
:
"system"
,
Content
:
"Provide very brief, concise responses"
,
Content
:
"Provide very brief, concise responses"
,
},
},
api
.
Message
{
{
Role
:
"user"
,
Role
:
"user"
,
Content
:
"Name some unusual animals"
,
Content
:
"Name some unusual animals"
,
},
},
api
.
Message
{
{
Role
:
"assistant"
,
Role
:
"assistant"
,
Content
:
"Monotreme, platypus, echidna"
,
Content
:
"Monotreme, platypus, echidna"
,
},
},
api
.
Message
{
{
Role
:
"user"
,
Role
:
"user"
,
Content
:
"which of these is the most dangerous?"
,
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