Fix linebreak lint

This commit is contained in:
Luis Blanco 2021-04-03 15:27:28 +03:00
parent 5dd1b40e10
commit 3fea905be4
2 changed files with 2 additions and 9 deletions

View File

@ -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]
}
}

View File

@ -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