From c6cf653f25c9afdc12245d132f106e44eabc7ca7 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Tue, 17 Nov 2020 10:42:48 -0600 Subject: [PATCH] ci(#77): Ignore README for editorconfig Because of the nf-core examples it throws errors. --- .github/workflows/linting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index bd429fa3..d64017ee 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -30,7 +30,7 @@ jobs: run: npm install -g editorconfig-checker - name: Run ECLint check - run: ec check $(git ls-files | grep -v test) + run: ec -exclude README.md $(git ls-files | grep -v test) YAML: runs-on: ubuntu-latest