Skip to content

Commit b17b8fd

Browse files
authored
Merge pull request #183 from jepler/pylint-no-bad-whitespace
remove 'bad-whitespace' from pylint invocation
2 parents fddc0fa + e9cf570 commit b17b8fd

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
From 9c445e26608a5be97f78c7aff4d7af28f53a1c90 Mon Sep 17 00:00:00 2001
2+
From: Jeff Epler <[email protected]>
3+
Date: Sun, 23 Aug 2020 12:08:25 -0500
4+
Subject: [PATCH] actions: Remove bad-whitespace from pylint invocation
5+
6+
---
7+
.github/workflows/build.yml | 2 +-
8+
1 file changed, 1 insertion(+), 1 deletion(-)
9+
10+
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
11+
index b6977a9..dc092cd 100644
12+
--- a/.github/workflows/build.yml
13+
+++ b/.github/workflows/build.yml
14+
@@ -49,7 +49,7 @@ jobs:
15+
- name: PyLint
16+
run: |
17+
pylint $( find . -path './adafruit*.py' )
18+
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace $( find . -path "./examples/*.py" ))
19+
+ ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name $( find . -path "./examples/*.py" ))
20+
- name: Build assets
21+
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
22+
- name: Build docs
23+
--
24+
2.20.1
25+

0 commit comments

Comments
 (0)