From e4469f72bcc37ac230876f2bcbf4168d83b11291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A9ri=20Le=20Bouder?= Date: Wed, 21 Apr 2021 23:52:09 -0400 Subject: [PATCH] yamllint and flake8 should ignore .cache (#73) The content of .cache is not maintained in this repository. There is no point raising an error when there is problem in one of these 3rd party dependencies. --- .yamllint | 2 ++ setup.cfg | 1 + 2 files changed, 3 insertions(+) diff --git a/.yamllint b/.yamllint index 45b68407..2ff8b4b0 100644 --- a/.yamllint +++ b/.yamllint @@ -14,3 +14,5 @@ rules: indentation: spaces: 2 indent-sequences: consistent +ignore: | + .cache diff --git a/setup.cfg b/setup.cfg index 29c924b8..12b98d34 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,4 @@ [flake8] max-line-length = 160 ignore = W503,E402 +exclude = .cache