diff --git a/.eslintrc b/.eslintrc index 2d610a7..5288484 100644 --- a/.eslintrc +++ b/.eslintrc @@ -43,10 +43,6 @@ "SwitchCase": 1 } ], - "linebreak-style": [ - "error", - "unix" - ], "max-len": ["error", 110], "quotes": [ "error", @@ -68,6 +64,7 @@ "no-shadow": [0], "node/no-unpublished-require": [0], "no-process-exit": [0], + "linebreak-style": [0], "no-console": [0] } } diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index afbfd80..839e6b3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,11 +10,7 @@ on: jobs: lint: - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2