We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 92ab4e3 + cc244c6 commit 8280682Copy full SHA for 8280682
.circleci/config.yml
@@ -37,7 +37,10 @@ jobs:
37
- *attach_workspace
38
- run:
39
name: Linting JavaScript
40
- command: yarn lint
+ command: yarn lint:js
41
+ - run:
42
+ name: Linting TypeScript
43
+ command: yarn lint:ts
44
45
unit_test:
46
<<: *docker_defaults
.eslintrc.js
@@ -14,5 +14,5 @@ module.exports = {
14
ecmaVersion: 11
15
},
16
plugins: ['prettier'],
17
- ignorePatterns: ['dist']
+ ignorePatterns: ['dist', 'docs']
18
};
0 commit comments