From 7dff2fb41d7359fe6e21fdeb055ac4f902013907 Mon Sep 17 00:00:00 2001 From: Michael Brewer Date: Sat, 20 Mar 2021 08:48:27 -0700 Subject: [PATCH 1/2] fix(lint): Exclude tests/THIRD-PARTY-LICENSES --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 6c0c78fa967..09975e87f87 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,5 @@ [flake8] -exclude = docs, .eggs, setup.py, example, .aws-sam, .git, dist, *.md, *.yaml, example/samconfig.toml, *.txt, *.ini +exclude = docs, .eggs, setup.py, example, .aws-sam, .git, dist, *.md, *.yaml, example/samconfig.toml, *.txt, *.ini, tests/THIRD-PARTY-LICENSES ignore = E203, E266, W503, BLK100, W291, I004 max-line-length = 120 max-complexity = 15 From 506b45a7b0fcf60a1ee61916950c63d7bf2bdd0e Mon Sep 17 00:00:00 2001 From: Michael Brewer Date: Sat, 20 Mar 2021 10:37:21 -0700 Subject: [PATCH 2/2] fix(docs): Move license file to correct location --- .flake8 | 2 +- tests/THIRD-PARTY-LICENSES => THIRD-PARTY-LICENSES | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/THIRD-PARTY-LICENSES => THIRD-PARTY-LICENSES (100%) diff --git a/.flake8 b/.flake8 index 09975e87f87..6c0c78fa967 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,5 @@ [flake8] -exclude = docs, .eggs, setup.py, example, .aws-sam, .git, dist, *.md, *.yaml, example/samconfig.toml, *.txt, *.ini, tests/THIRD-PARTY-LICENSES +exclude = docs, .eggs, setup.py, example, .aws-sam, .git, dist, *.md, *.yaml, example/samconfig.toml, *.txt, *.ini ignore = E203, E266, W503, BLK100, W291, I004 max-line-length = 120 max-complexity = 15 diff --git a/tests/THIRD-PARTY-LICENSES b/THIRD-PARTY-LICENSES similarity index 100% rename from tests/THIRD-PARTY-LICENSES rename to THIRD-PARTY-LICENSES