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"