Skip to content

Commit 15b4d60

Browse files
committed
Merge remote-tracking branch 'origin/master' into wait
2 parents afbf690 + 76b2207 commit 15b4d60

File tree

5 files changed

+8730
-10
lines changed

5 files changed

+8730
-10
lines changed

.eslintrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": [
3+
"plugin:cypress-dev/general"
4+
]
5+
}

circle.yml

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
1-
machine:
2-
node:
3-
# need Node 8 for latest semantic release
4-
version: 8
5-
test:
6-
override:
7-
- npm run semantic-release || true
1+
version: 2
2+
3+
workflows:
4+
version: 2
5+
tests:
6+
jobs:
7+
- test
8+
9+
jobs:
10+
test:
11+
docker:
12+
- image: circleci/node:8
13+
steps:
14+
- checkout
15+
- run:
16+
name: Install dependencies
17+
command: npm install
18+
- run:
19+
name: Lint code
20+
command: npm run lint
21+
- run:
22+
name: Run tests
23+
command: npm test
24+
- run:
25+
name: Semantic release
26+
command: npm run semantic-release || true

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ const globals = require('globals')
33
module.exports = {
44
rules: {
55
'no-assigning-return-values': require('./lib/rules/no-assigning-return-values'),
6-
'no-unnecessary-waiting': require('./lib/rules/no-unnecessary-waiting')
6+
'no-unnecessary-waiting': require('./lib/rules/no-unnecessary-waiting'),
77
},
88
configs: {
9-
recommended: require('./lib/config/recommended')
9+
recommended: require('./lib/config/recommended'),
1010
},
1111
environments: {
1212
globals: {

0 commit comments

Comments
 (0)