From c711da8c5917c15dfaf1c83b52bfe43f76f05d66 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Thu, 23 Nov 2023 16:42:57 -0700 Subject: [PATCH] yamllint rule, pr_requesr lint --- .github/workflows/pr_request_checks.yml | 3 ++- pyproject.toml | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_request_checks.yml b/.github/workflows/pr_request_checks.yml index 56b8c1f7..ad7b691f 100644 --- a/.github/workflows/pr_request_checks.yml +++ b/.github/workflows/pr_request_checks.yml @@ -1,3 +1,4 @@ +--- name: Pull Request Checks on: @@ -24,4 +25,4 @@ jobs: - name: Run tests and checks run: | find tests/ -name "*.py" | xargs pytest - pylint swarms \ No newline at end of file + pylint swarms diff --git a/pyproject.toml b/pyproject.toml index 6b9b191e..7679f823 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,4 +90,7 @@ line-length = 200 max-line-length = 200 [tool.flake8] -extend-ignore = "E266, E501, W292, W291, W293i" \ No newline at end of file +extend-ignore = "E266, E501, W292, W291, W293i" + +[tool.yamllint] +disable-line rule:truthy \ No newline at end of file