Skip to content

Commit e5bd4b7

Browse files
committedAug 19, 2020
Merge branch 'master' of github.com:amejiarosario/dsa.js-data-structures-algorithms-javascript
2 parents ad15b5f + cccadf8 commit e5bd4b7

File tree

132 files changed

+18151
-4512
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+18151
-4512
lines changed
 

‎.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ jobs: # a collection of steps
4646
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
4747
path: test-results.xml
4848

49+
- run:
50+
name: release
51+
command: npm run semantic-release || true
52+
4953
docs:
5054
docker:
5155
- image: circleci/ruby:2.5.3-stretch-node

‎.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ module.exports = {
1515

1616
// https://eslint.org/docs/rules/no-plusplus
1717
// allows unary operators ++ and -- in the afterthought (final expression) of a for loop.
18-
'no-plusplus': [2, { 'allowForLoopAfterthoughts': true }],
18+
'no-plusplus': [0, { 'allowForLoopAfterthoughts': true }],
19+
'no-continue': [0],
1920

2021
// Allow for..of
2122
'no-restricted-syntax': [0, 'ForOfStatement'],

0 commit comments

Comments
 (0)
Please sign in to comment.