build: allow noUnusedLocals

This commit is contained in:
wewoor 2023-05-12 11:42:39 +08:00
parent 1b4ecc360a
commit 4becd4bc00
2 changed files with 3 additions and 5 deletions

View File

@ -62,10 +62,8 @@ jobs:
path: node_modules
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
- name: Run Unit Test
run: |
export NODE_OPTIONS="--max_old_space_size=4096"
yarn test
- name: Test FlinkSQL
run: npx jest test/parser/flinksql
build:
runs-on: ubuntu-latest

View File

@ -8,7 +8,7 @@
"module": "ESNext",
"moduleResolution": "node",
"declaration": true,
"noUnusedLocals": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,