Skip to content

Commit

Permalink
Streamline YAML indent
Browse files Browse the repository at this point in the history
The YAML files had mixed indentation. This patch fixes this and
also add hyphens to mark the beginning of the documents.
  • Loading branch information
shaardie authored and lkiesow committed Jun 26, 2020
1 parent baa0561 commit da7d69d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
env:
browser: true
es2020: true
Expand Down
17 changes: 9 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
---
language: python

dist: bionic

# https://devguide.python.org/#branchstatus
python:
- 3.6
- 3.7
- 3.8
- 3.6
- 3.7
- 3.8

addons:
apt:
packages:
- libgnutls28-dev

before_install:
- pip install flake8 python-coveralls mock coverage
- npm ci
- pip install flake8 python-coveralls mock coverage
- npm ci

script:
- make test
- make lint
- make test
- make lint

after_success:
- coveralls
- coveralls

0 comments on commit da7d69d

Please sign in to comment.