We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e456c0f commit 3b17b84Copy full SHA for 3b17b84
.flake8
@@ -0,0 +1,9 @@
1
+[flake8]
2
+max_line_length = 88
3
+per-file-ignores =
4
+ # too many leading '#' for block comment
5
+ test/*:E266
6
+ # line too long (several test strs)
7
+ test_granules.py:E501
8
+ # imported but unused
9
+ __init__.py:F401
.github/workflows/linter_actions.yml
@@ -13,9 +13,7 @@ jobs:
13
- name: Run black linter
14
uses: psf/black@stable
15
# use the flake8 linter to annotate improperly formatted code
16
+ # note linter arguments are supplied via the .flake8 config file
17
- name: Annotate PR after running flake8
18
uses: TrueBrain/actions-flake8@v2
- with:
19
- max_line_length: 88
20
- extra_arguments:
21
- --per-file-ignores=__init__.py:F401 #test_granules.py:E501
+
0 commit comments