From 8ed422434195d56f76dd1070e5333f4f8eb34f80 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Mon, 5 Apr 2021 13:38:31 -0400 Subject: [PATCH] build: Move flake8 config to `.flake8` --- ci_scripts/flake8_linter_check.ini => .flake8 | 0 ci_scripts/flake8_syntax_check.ini | 14 -------------- 2 files changed, 14 deletions(-) rename ci_scripts/flake8_linter_check.ini => .flake8 (100%) delete mode 100644 ci_scripts/flake8_syntax_check.ini diff --git a/ci_scripts/flake8_linter_check.ini b/.flake8 similarity index 100% rename from ci_scripts/flake8_linter_check.ini rename to .flake8 diff --git a/ci_scripts/flake8_syntax_check.ini b/ci_scripts/flake8_syntax_check.ini deleted file mode 100644 index 55e470e00..000000000 --- a/ci_scripts/flake8_syntax_check.ini +++ /dev/null @@ -1,14 +0,0 @@ -[flake8] - -## Check syntax errors and fail the build if any are found. -exclude = - ../monkey/monkey_island/cc/ui -select = - E901, - E999, - F821, - F822, - F823 -count = True -show-source = True -statistics = True