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.
This commit is contained in:
Gonéri Le Bouder
2021-04-21 23:52:09 -04:00
committed by GitHub
parent c214376cac
commit e4469f72bc
2 changed files with 3 additions and 0 deletions

View File

@@ -14,3 +14,5 @@ rules:
indentation: indentation:
spaces: 2 spaces: 2
indent-sequences: consistent indent-sequences: consistent
ignore: |
.cache

View File

@@ -1,3 +1,4 @@
[flake8] [flake8]
max-line-length = 160 max-line-length = 160
ignore = W503,E402 ignore = W503,E402
exclude = .cache