From da7d69dfa3ebd564c7b0d69ac4fa5c15d022ded0 Mon Sep 17 00:00:00 2001 From: Sven Haardiek Date: Fri, 26 Jun 2020 10:14:11 +0200 Subject: [PATCH] Streamline YAML indent The YAML files had mixed indentation. This patch fixes this and also add hyphens to mark the beginning of the documents. --- .eslintrc.yml | 1 + .travis.yml | 17 +++++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.eslintrc.yml b/.eslintrc.yml index 80e7cc77..5ce9ec57 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -1,3 +1,4 @@ +--- env: browser: true es2020: true diff --git a/.travis.yml b/.travis.yml index 788acb3c..bfd26c24 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,13 @@ +--- language: python dist: bionic # https://devguide.python.org/#branchstatus python: - - 3.6 - - 3.7 - - 3.8 + - 3.6 + - 3.7 + - 3.8 addons: apt: @@ -14,12 +15,12 @@ addons: - 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