File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 29
29
REVIEWDOG_GITHUB_API_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30
30
run : |
31
31
flake8 --docstring-convention=all | \
32
- reviewdog -f=pep8 -name=flake8 -reporter=github-check
32
+ reviewdog -f=pep8 -name=flake8 \
33
+ -tee -reporter=github-check -filter-mode nofilter
33
34
34
35
eslint :
35
36
name : eslint
40
41
- name : eslint
41
42
uses : reviewdog/action-eslint@v1
42
43
with :
44
+ filter_mode : nofilter
43
45
github_token : ${{ secrets.GITHUB_TOKEN }}
44
46
reporter : github-check
45
47
workdir : ' lib/matplotlib/backends/web_backend/'
Original file line number Diff line number Diff line change 10
10
11
11
import matplotlib .cbook as cbook
12
12
13
+
13
14
# same algorithm as 3.8's math.comb
14
15
@np .vectorize
15
16
@lru_cache (maxsize = 128 )
Original file line number Diff line number Diff line change 28
28
29
29
from matplotlib .axes import Axes , SubplotBase , subplot_class_factory
30
30
from matplotlib .blocking_input import BlockingMouseInput , BlockingKeyMouseInput
31
- from matplotlib .gridspec import GridSpec , SubplotSpec
31
+ from matplotlib .gridspec import GridSpec , SubplotSpec # noqa: F401
32
32
import matplotlib .legend as mlegend
33
33
from matplotlib .patches import Rectangle
34
34
from matplotlib .text import Text
You can’t perform that action at this time.
0 commit comments