Merge pull request #4807 from ssbarnea/fix/pre-commit

Enable pre-commit linting
This commit is contained in:
OpenShift Merge Robot
2020-01-15 23:51:22 +01:00
committed by GitHub
11 changed files with 28 additions and 8 deletions

12
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,12 @@
---
exclude: ^vendor/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v2.4.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending
- id: check-byte-order-marker
- id: check-executables-have-shebangs
- id: check-merge-conflict

0
API.md Executable file → Normal file
View File

View File

@ -32,8 +32,10 @@ BUILDTAGS ?= \
exclude_graphdriver_devicemapper \
seccomp \
varlink
PYTHON ?= $(shell command -v python python3|head -n1)
PYTHON ?= $(shell command -v python3 python|head -n1)
PKG_MANAGER ?= $(shell command -v dnf yum|head -n1)
# ~/.local/bin is not in PATH on all systems
PRE_COMMIT = $(shell command -v bin/venv/bin/pre-commit ~/.local/bin/pre-commit pre-commit | head -n1)
SOURCES = $(shell find . -name "*.go")
@ -149,6 +151,11 @@ endif
touch $@
lint: golangci-lint
ifeq ($(PRE_COMMIT),)
@echo "FATAL: pre-commit was not found, check https://pre-commit.com/ about installing it." >&2
@exit 2
endif
$(PRE_COMMIT) run -a
golangci-lint: .gopathok varlink_generate .install.golangci-lint
$(GOBIN)/golangci-lint run

View File

@ -46,6 +46,7 @@ WORKDIR $GOSRC
# Install dependencies
RUN set -x && \
install -D -m 755 $GOSRC/contrib/gate/entrypoint.sh /usr/local/bin/ && \
python3 -m pip install pre-commit && \
rm -rf "$GOSRC"
# Install cni config

View File

@ -14,4 +14,4 @@ indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
insert_final_newline = true

View File

@ -104,4 +104,4 @@ Commands
:doc:`volume <volume>` Manage volumes
:doc:`wait <markdown/podman-wait.1>` Block on one or more containers
:doc:`wait <markdown/podman-wait.1>` Block on one or more containers

View File

@ -7,4 +7,4 @@ Network
:doc:`ls <markdown/podman-network-ls.1>` network list
:doc:`rm <markdown/podman-network-rm.1>` network rm
:doc:`rm <markdown/podman-network-rm.1>` network rm

View File

@ -8,4 +8,4 @@ Volume
:doc:`prune <markdown/podman-volume-prune.1>` Remove all unused volumes
:doc:`rm <markdown/podman-volume-rm.1>` Remove one or more volumes
:doc:`rm <markdown/podman-volume-rm.1>` Remove one or more volumes

View File

@ -1 +1 @@
rpms/
rpms/

View File

@ -8,4 +8,4 @@ make -f .copr/Makefile srpm outdir=test/install/rpms
make -f .copr/Makefile build_binary outdir=test/install/rpms
```
Then, run a container image build using the Dockerfiles in this directory.
Then, run a container image build using the Dockerfiles in this directory.

View File

@ -5,4 +5,4 @@
}
],
"transports": null
}
}