From e9cd3319cf14b3d9484c4e6d7aa5040509a81653 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Tue, 7 Jan 2020 20:46:18 +0000 Subject: Enable pre-commit tool linting This should help use keep the codebase more consistent, and avoid sevel whitespace related issues, or bad file permissions. pre-commit allows us to easily introduce other linters in follow-ups, like bashate. Note: pre-commit tool does *not* install any git-hooks. Making commits will will call the tool unless you deliverately tell it to install the hooks. Signed-off-by: Sorin Sbarnea --- contrib/gate/Dockerfile | 1 + 1 file changed, 1 insertion(+) (limited to 'contrib/gate/Dockerfile') diff --git a/contrib/gate/Dockerfile b/contrib/gate/Dockerfile index 1939d7ad1..d1e0b967b 100644 --- a/contrib/gate/Dockerfile +++ b/contrib/gate/Dockerfile @@ -48,6 +48,7 @@ WORKDIR $GOSRC RUN set -x && \ make install.tools && \ install -D -m 755 $GOSRC/contrib/gate/entrypoint.sh /usr/local/bin/ && \ + python3 -m pip install pre-commit && \ rm -rf "$GOSRC" # Install cni config -- cgit v1.2.3-54-g00ecf