Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 10 additions & 13 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"extends": [
"airbnb-base",
"prettier"
],
"extends": ["airbnb-base", "prettier"],
"rules": {
"prettier/prettier": ["error", {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 80
}],
"prettier/prettier": [
"error",
{
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 80
}
],
"no-underscore-dangle": 0,
"no-plusplus": 0,
"no-use-before-define": 0,
Expand All @@ -27,8 +27,5 @@
"env": {
"mocha": true
},
"plugins": [
"prettier",
"chai-expect"
]
"plugins": ["prettier", "chai-expect"]
}
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,9 @@ script:
- if [ "$ES" -eq "5" ]; then echo "RUNNING V5"; npm run-script test-v5-covered ; fi
- if [ "$ES" -eq "6" ]; then echo "RUNNING V6"; npm run-script test-v6-covered ; fi
- if [ "$ES" -eq "7" ]; then echo "RUNNING V7"; npm run-script test-v7-covered ; fi





after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- "curl -Lo travis_after_all.py https://git.io/travis_after_all"
- python travis_after_all.py
- export $(cat .to_export_back) &> /dev/null
- if [[ "$TRAVIS_JOB_NUMBER" == *.1 ]]; then cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi
Expand Down
Loading