From 74324db0cfacaad555064c839f17072b57cb35e3 Mon Sep 17 00:00:00 2001 From: Alan Sapede Date: Thu, 30 Jun 2022 17:15:18 -0400 Subject: [PATCH] Prevent rust code formatting check to fail on spaces after tabs (#1646) --- .ecrc | 3 +++ .github/workflows/build.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .ecrc diff --git a/.ecrc b/.ecrc new file mode 100644 index 0000000000..aaa3297894 --- /dev/null +++ b/.ecrc @@ -0,0 +1,3 @@ +{ + "SpacesAftertabs": true +} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4741522828..b78c94fa14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -113,7 +113,7 @@ jobs: run: | ls /tmp/bin/ec-linux-amd64 || \ cd /tmp && \ - wget https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.4.0/ec-linux-amd64.tar.gz && \ + wget https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.5.0/ec-linux-amd64.tar.gz && \ tar xvf ec-linux-amd64.tar.gz && \ chmod +x bin/ec-linux-amd64 - name: Check files