From 76ff1f5eec64cc5559b8799709019ffe4b8a0d3f Mon Sep 17 00:00:00 2001 From: alxshelepenok Date: Sun, 11 Nov 2018 15:54:42 +0300 Subject: [PATCH] Rename lint script --- .travis.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0c8bedb..0fc1026 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - npm install -g codecov script: - yarn install - - yarn lint:all + - yarn lint - yarn test:coverage --runInBand --no-cache - yarn test --runInBand --no-cache - codecov diff --git a/package.json b/package.json index a36efc0..c6924a7 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "clean": "rimraf .cache public", "lint:js": "eslint --cache --ext .js,.jsx --ignore-pattern public .", "lint:scss": "stylelint \"src/**/*.scss\"", - "lint:all": "concurrently \"yarn run lint:js\" \"yarn run lint:scss\"", + "lint": "concurrently \"yarn run lint:js\" \"yarn run lint:scss\"", "test": "jest --config ./tests/jest-config.js", "test:coverage": "jest --coverage --config ./tests/jest-config.js", "test:watch": "jest --watch --config ./tests/jest-config.js"