From 5965389627615b6413dfea2ecd2567630c3f4873 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sun, 16 Apr 2017 21:09:19 +0200 Subject: [PATCH] hide bandit config --- .bandit.yaml => .bandit.yml | 0 Makefile | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .bandit.yaml => .bandit.yml (100%) diff --git a/.bandit.yaml b/.bandit.yml similarity index 100% rename from .bandit.yaml rename to .bandit.yml diff --git a/Makefile b/Makefile index 56f1967379..3d25a0a2d9 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ lint: $(pycodestyle) $(CURDIR)/nextcloudappstore --exclude=migrations $(mypy) --silent-imports --disallow-untyped-defs $(CURDIR)/nextcloudappstore/api/v1/release $(mypy) --silent-imports --disallow-untyped-defs $(CURDIR)/nextcloudappstore/core/certificate - $(bandit) -r $(CURDIR)/nextcloudappstore -c $(CURDIR)/.bandit.yaml + $(bandit) -r $(CURDIR)/nextcloudappstore -c $(CURDIR)/.bandit.yml .PHONY: test test: lint