mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
b206a015b3
For changes, see https://github.com/opencontainers/cgroups/releases/tag/v0.0.2 Fix integration tests according to changes in [1] (now the CPU quota value set is rounded the same way systemd does it). [1]: https://github.com/opencontainers/cgroups/pull/4 Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
22 lines
603 B
YAML
22 lines
603 B
YAML
# This is golangci-lint config file which is used to check NEW code in
|
|
# github PRs only (see lint-extra in .github/workflows/validate.yml).
|
|
#
|
|
# For the default linter config, see .golangci.yml. This config should
|
|
# only enable additional linters and/or linter settings not enabled
|
|
# in the default config.
|
|
version: "2"
|
|
|
|
linters:
|
|
default: none
|
|
enable:
|
|
- godot
|
|
- revive
|
|
- staticcheck
|
|
settings:
|
|
staticcheck:
|
|
checks:
|
|
- all
|
|
- -QF1008 # https://staticcheck.dev/docs/checks/#QF1008 Omit embedded fields from selector expression.
|
|
exclusions:
|
|
generated: strict
|