From a951ccb14f6c1ce192d9681938b32d8c8f2ac2da Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Mon, 28 Sep 2020 14:00:49 -0500 Subject: [PATCH] remove yarn lint-windows --- .github/workflows/ci.yml | 2 +- package.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 104d46384..578844bba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,7 +123,7 @@ jobs: - run: yarn install --frozen-lockfile - run: yarn generate - - run: yarn lint-windows + - run: yarn lint - run: yarn lint-deps - run: node build\grunt.js - run: yarn test-node diff --git a/package.json b/package.json index 38f471517..a7edc02d5 100644 --- a/package.json +++ b/package.json @@ -32,8 +32,7 @@ "test-node": "electron-mocha --recursive test/app test/modules ts/test", "test-node-coverage": "nyc --reporter=lcov --reporter=text mocha --recursive test/app test/modules ts/test", "eslint": "eslint .", - "lint": "yarn format --list-different && yarn lint-windows", - "lint-windows": "yarn eslint", + "lint": "yarn format --list-different && yarn eslint", "lint-deps": "node ts/util/lint/linter.js", "format": "prettier --write \"*.{css,js,json,md,scss,ts,tsx}\" \"./**/*.{css,js,json,md,scss,ts,tsx}\"", "transpile": "tsc",