Skip to content

Commit

Permalink
build: fix eslint await outside function rule
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Jan 9, 2024
1 parent 83537a2 commit 910200c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/csv-generate/.eslintrc.yml
Expand Up @@ -7,7 +7,7 @@ globals:
Atomics: "readonly"
SharedArrayBuffer: "readonly"
parserOptions:
ecmaVersion: 2020
ecmaVersion: "latest"
sourceType: "module"
rules:
no-var: "error"
Expand Down
2 changes: 1 addition & 1 deletion packages/csv-parse/.eslintrc.yml
Expand Up @@ -7,7 +7,7 @@ globals:
Atomics: "readonly"
SharedArrayBuffer: "readonly"
parserOptions:
ecmaVersion: 2020
ecmaVersion: "latest"
sourceType: "module"
rules:
no-var: "error"
Expand Down
2 changes: 1 addition & 1 deletion packages/csv-stringify/.eslintrc.yml
Expand Up @@ -7,7 +7,7 @@ globals:
Atomics: "readonly"
SharedArrayBuffer: "readonly"
parserOptions:
ecmaVersion: 2020
ecmaVersion: "latest"
sourceType: "module"
rules:
no-var: "error"
Expand Down
2 changes: 1 addition & 1 deletion packages/csv/.eslintrc.yml
Expand Up @@ -7,7 +7,7 @@ globals:
Atomics: "readonly"
SharedArrayBuffer: "readonly"
parserOptions:
ecmaVersion: 2020
ecmaVersion: "latest"
sourceType: "module"
rules:
no-var: "error"
Expand Down
2 changes: 1 addition & 1 deletion packages/stream-transform/.eslintrc.yml
Expand Up @@ -7,7 +7,7 @@ globals:
Atomics: "readonly"
SharedArrayBuffer: "readonly"
parserOptions:
ecmaVersion: 2020
ecmaVersion: "latest"
sourceType: "module"
rules:
no-var: "error"
Expand Down

0 comments on commit 910200c

Please sign in to comment.