Fix linebreak lint
This commit is contained in:
parent
5dd1b40e10
commit
3fea905be4
|
@ -43,10 +43,6 @@
|
||||||
"SwitchCase": 1
|
"SwitchCase": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"linebreak-style": [
|
|
||||||
"error",
|
|
||||||
"unix"
|
|
||||||
],
|
|
||||||
"max-len": ["error", 110],
|
"max-len": ["error", 110],
|
||||||
"quotes": [
|
"quotes": [
|
||||||
"error",
|
"error",
|
||||||
|
@ -68,6 +64,7 @@
|
||||||
"no-shadow": [0],
|
"no-shadow": [0],
|
||||||
"node/no-unpublished-require": [0],
|
"node/no-unpublished-require": [0],
|
||||||
"no-process-exit": [0],
|
"no-process-exit": [0],
|
||||||
|
"linebreak-style": [0],
|
||||||
"no-console": [0]
|
"no-console": [0]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
strategy:
|
runs-on: ubuntu-latest
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
Loading…
Reference in New Issue