We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c5e01 commit 42e563cCopy full SHA for 42e563c
.eslintrc.js
@@ -14,7 +14,8 @@ module.exports = {
14
],
15
plugins: ['@typescript-eslint'],
16
parserOptions: {
17
- ecmaVersion: 2015
+ ecmaVersion: 2020,
18
+ parser: 'espree'
19
},
20
rules: {
21
'object-shorthand': 'error',
.github/workflows/test.yml
@@ -52,7 +52,7 @@ jobs:
52
strategy:
53
matrix:
54
os: [ubuntu-latest]
55
- eslint: [5, 6, ^8.0.0-0]
+ eslint: [5, 6, 8]
56
node: [14]
57
steps:
58
- name: Checkout
@@ -63,5 +63,8 @@ jobs:
63
node-version: ${{ matrix.node }}
64
- name: Install
65
run: yarn add eslint@${{ matrix.eslint }}
66
+ - name: Install ts-eslint v5
67
+ run: yarn add @typescript-eslint/parser@5 @typescript-eslint/eslint-plugin@5
68
+ if: matrix.eslint == 8
69
- name: Test
70
run: yarn test
0 commit comments