-
Notifications
You must be signed in to change notification settings - Fork 12
Refactor code to use ES module syntax #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feature/sharedArrayBuffers
Are you sure you want to change the base?
Changes from 5 commits
68d9a79
43b1636
01e9302
d5d91ef
6601f20
8ffaf38
e9f34e7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| import js from "@eslint/js"; | ||
| import globals from "globals"; | ||
|
|
||
| export default [ | ||
| { | ||
| ignores: ["build/**", "tools/**"], | ||
| }, | ||
| { | ||
| ...js.configs.recommended, | ||
| languageOptions: { | ||
| ecmaVersion: 2020, | ||
| globals: { | ||
| ...globals.node, | ||
| ...globals.es2020, | ||
| WebAssembly: "readonly", | ||
| }, | ||
| }, | ||
| rules: { | ||
| "indent": ["error", 4], | ||
| "linebreak-style": ["error", "unix"], | ||
| "quotes": ["error", "double"], | ||
| "semi": ["error", "always"], | ||
| }, | ||
| }, | ||
| { | ||
| files: ["test/**/*.js"], | ||
| languageOptions: { | ||
| globals: { | ||
| describe: "readonly", | ||
| it: "readonly", | ||
| beforeAll: "readonly", | ||
| afterAll: "readonly", | ||
| beforeEach: "readonly", | ||
| afterEach: "readonly", | ||
| }, | ||
| }, | ||
| }, | ||
| ]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Applied →
npx playwright install --with-deps chromium.