-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* turn on multithreading * fix * removing test file * re-enabled multi threads * Using atomics * moonscope timeout * added chopsticks retries * removed script * fix retries * fix CI * fix chopsticks CI * chopsticks fix * Given retries to tracing tests * changed thread config * testing single-threads * restored multithreads * pkg update * pkg update * update pkgs * lint * restore wormhole test * fixing type errors * lint * Changed prettier format task * skip actions requiring secrets if comning from forks PRs filed from forks do not have access to secrets * added linting to helper files * fix ci * enable lint for test files * Tidied import statements on test specs --------- Co-authored-by: Andrea Giacobino <[email protected]>
- Loading branch information
1 parent
aefcc5b
commit 1b193f5
Showing
346 changed files
with
2,187 additions
and
2,189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
module.exports = { | ||
env: { | ||
es2021: true, | ||
node: true, | ||
}, | ||
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], | ||
overrides: [ | ||
{ | ||
env: { | ||
node: true, | ||
}, | ||
files: [".eslintrc.{js,cjs}"], | ||
parserOptions: { | ||
sourceType: "script", | ||
}, | ||
}, | ||
], | ||
parser: "@typescript-eslint/parser", | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
}, | ||
plugins: ["@typescript-eslint", "unused-imports"], | ||
rules: { | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"no-async-promise-executor": "off", | ||
"@typescript-eslint/no-unused-vars": "off", | ||
"unused-imports/no-unused-imports-ts": "error", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.