Skip to content

Commit

Permalink
backport of commit cdaf45d
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousben authored Sep 12, 2024
1 parent 47f3313 commit 5b4897e
Show file tree
Hide file tree
Showing 303 changed files with 11,355 additions and 6,004 deletions.
3 changes: 0 additions & 3 deletions .changelog/23675.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23712.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23803.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23804.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23805.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23813.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23817.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23829.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23832.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23838.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23850.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23858.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23882.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23894.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23902.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23910.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23912.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/23927.txt

This file was deleted.

76 changes: 0 additions & 76 deletions .github/workflows/jira-sync.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/test-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:

- name: Install optional dependencies
if: ${{ matrix.groups == 'drivers' }}
run: sudo apt update && sudo apt install qemu-system
run: sudo apt install qemu-system

- name: Run Matrix Tests
env:
Expand Down
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.22.6
1.22.5
34 changes: 21 additions & 13 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,34 @@

run:
# Timeout for analysis.
timeout: 10m
deadline: 10m

# Modules download mode (do not modify go.mod)
module-download-mode: readonly

# Exclude test files
tests: false

# Skip ui and generated files
issues:
exclude-files:
# which dirs to skip: they won't be analyzed;
# can use regexp here: generated.*, regexp is applied on full path;
# default value is empty list, but next dirs are always skipped independently
# from this option's value:
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
skip-dirs:
- ui

# which files to skip: they will be analyzed, but issues from them
# won't be reported. Default value is empty list, but there is
# no need to include all autogenerated files, we confidently recognize
# autogenerated files. If it's not please let us know.
skip-files:
- ".*\\.generated\\.go$"
- ".*bindata_assetfs\\.go$"
skip-dirs:
- ui

# Output configuration options
# output configuration options
output:
formats:
- format: colored-line-number
path: stdout
# colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number"
format: colored-line-number

# print lines of code with issue, default is true
print-issued-lines: true
Expand All @@ -38,9 +45,10 @@ linters-settings:
# default is false: such cases aren't reported by default.
check-type-assertions: false

exclude-functions:
- io.*
- fmt.*
# [deprecated] comma-separated list of pairs of the form pkg:regex
# the regex is used to ignore names within pkg. (default "fmt:.*").
# see https://github.com/kisielk/errcheck#the-deprecated-method for details
ignore: fmt:.*,io/ioutil:^Read.*

# path to a file containing a list of functions to exclude from checking
# see https://github.com/kisielk/errcheck#excluding-functions for details
Expand Down
Loading

0 comments on commit 5b4897e

Please sign in to comment.