Skip to content

Commit

Permalink
fix(lint): fix configuration of eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-lot committed Jun 26, 2022
1 parent 01b4c9a commit 3fce893
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
env: {
es6: true,
},
ignorePatterns: ['**/*.js'],
ignorePatterns: ['coverage/**', 'dist/**', '**/*.js'],
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn lint
- run: sudo chmod -R 777 ./dist
- run: yarn build --if-present
Expand Down

0 comments on commit 3fce893

Please sign in to comment.