Skip to content

Commit

Permalink
Merge pull request #162 from moneytree/fix-linting
Browse files Browse the repository at this point in the history
Fix detecting linting failures in CircleCI
  • Loading branch information
mt-pcuba authored Oct 23, 2024
2 parents 92ab4e3 + cc244c6 commit 8280682
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ jobs:
- *attach_workspace
- run:
name: Linting JavaScript
command: yarn lint
command: yarn lint:js
- run:
name: Linting TypeScript
command: yarn lint:ts

unit_test:
<<: *docker_defaults
Expand Down
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ module.exports = {
ecmaVersion: 11
},
plugins: ['prettier'],
ignorePatterns: ['dist']
ignorePatterns: ['dist', 'docs']
};

0 comments on commit 8280682

Please sign in to comment.