diff --git a/.travis.yml b/.travis.yml index 3548618..e4afcd9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,7 @@ install: # Disable the spinner; it looks bad on Travis. - npm config set spin false - npm install + - npm install -g scssfmt script: - ./build - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js diff --git a/package.json b/package.json index 3c1389a..92e37d0 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "lint": "ng lint", "e2e": "ng e2e", "update-deps": "npm update", - "travis": "npm run lint && ng test --no-watch --code-coverage" + "travis": "npm run lint && scssfmt --recursive 'src/**/**/*.scss' --diff && ng test --no-watch --code-coverage" }, "private": true, "dependencies": { diff --git a/src/styles/_global.scss b/src/styles/_global.scss index 124841b..18633c2 100644 --- a/src/styles/_global.scss +++ b/src/styles/_global.scss @@ -39,7 +39,9 @@ button { text-transform: uppercase; } -a:link, a:active, a:visited { +a:link, +a:active, +a:visited { text-decoration: none; cursor: pointer; color: inherit;