Skip to content

Commit

Permalink
[codestyle] Use single quotes in YAML files
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinca committed Feb 21, 2019
1 parent 6ad4d86 commit 1d93fb2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: node_js
sudo: false
node_js:
- "11"
- "10"
- "8"
- "6"
- '11'
- '10'
- '8'
- '6'
after_success:
- "npm install coveralls@3 && nyc report --reporter=text-lcov | coveralls"
- 'npm install coveralls@3 && nyc report --reporter=text-lcov | coveralls'
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
environment:
matrix:
- nodejs_version: "11"
- nodejs_version: "10"
- nodejs_version: "8"
- nodejs_version: "6"
- nodejs_version: '11'
- nodejs_version: '10'
- nodejs_version: '8'
- nodejs_version: '6'
platform:
- x86
- x64
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"scripts": {
"test": "npm run lint && nyc --reporter=html --reporter=text mocha test/*.test.js",
"integration": "npm run lint && mocha test/*.integration.js",
"lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md}\""
"lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yml}\""
},
"dependencies": {
"async-limiter": "~1.0.0"
Expand Down

0 comments on commit 1d93fb2

Please sign in to comment.