From bd490509abf15984fae7d437fd0190656fb39762 Mon Sep 17 00:00:00 2001 From: Peter Nied Date: Mon, 24 Jan 2022 12:42:00 -0600 Subject: [PATCH] Ymllint / Flake8 add ignores for developer folders (#1530) Signed-off-by: Peter Nied --- .flake8 | 6 ++++++ .yamllint.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.flake8 b/.flake8 index 65d94e890a..3927494735 100644 --- a/.flake8 +++ b/.flake8 @@ -1,3 +1,9 @@ [flake8] ignore = E722,W503 max-line-length = 200 +exclude = + bin + builds + dist + test-results + deployment/node_modules \ No newline at end of file diff --git a/.yamllint.yml b/.yamllint.yml index 053a3237c9..9a30f3655c 100644 --- a/.yamllint.yml +++ b/.yamllint.yml @@ -3,6 +3,12 @@ yaml-files: - '*.yaml' - '*.yml' - .yamllint.yml +ignore: | + bin + builds + dist + test-results + deployment/node_modules rules: document-start: enable line-length: disable