Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Make eslint pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Gaunt committed Aug 30, 2021
1 parent cc8afed commit 13fc8ee
Show file tree
Hide file tree
Showing 3 changed files with 2,565 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"no-console": 0,
"comma-dangle": 0,
"require-jsdoc": 0,
"no-useless-escape": 0
"no-useless-escape": 0,
"indent": 0,
"prefer-const": 0
},
"parserOptions": {
"ecmaVersion": 6
Expand Down
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
sudo: required
dist: trusty
language: node_js
cache:
directories:
- node_modules

node_js:
- 'stable'

install:
- npm install

# Read more here: https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start || echo \"Unable to start virtual display.\""
- sleep 3 # give xvfb some time to start

script:
- npm run test
Loading

0 comments on commit 13fc8ee

Please sign in to comment.