Skip to content

Commit 8280682

Browse files
authored
Merge pull request #162 from moneytree/fix-linting
Fix detecting linting failures in CircleCI
2 parents 92ab4e3 + cc244c6 commit 8280682

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.circleci/config.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ jobs:
3737
- *attach_workspace
3838
- run:
3939
name: Linting JavaScript
40-
command: yarn lint
40+
command: yarn lint:js
41+
- run:
42+
name: Linting TypeScript
43+
command: yarn lint:ts
4144

4245
unit_test:
4346
<<: *docker_defaults

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ module.exports = {
1414
ecmaVersion: 11
1515
},
1616
plugins: ['prettier'],
17-
ignorePatterns: ['dist']
17+
ignorePatterns: ['dist', 'docs']
1818
};

0 commit comments

Comments
 (0)