Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b2141 commit 1357102Copy full SHA for 1357102
1 file changed
.github/workflows/reviewdog.yml
@@ -30,3 +30,16 @@ jobs:
30
run: |
31
flake8 --docstring-convention=all | \
32
reviewdog -f=pep8 -name=flake8 -reporter=github-check
33
+
34
+ eslint:
35
+ name: eslint
36
+ runs-on: ubuntu-latest
37
+ steps:
38
+ - uses: actions/checkout@v2
39
40
+ - name: eslint
41
+ uses: reviewdog/action-eslint@v1
42
+ with:
43
+ github_token: ${{ secrets.GITHUB_TOKEN }}
44
+ reporter: github-check
45
+ workdir: 'lib/matplotlib/backends/web_backend/'
0 commit comments