forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/mgunnin/virtualDegen int…
…o develop * 'develop' of https://github.com/mgunnin/virtualDegen: (41 commits) Update README.md (elizaOS#2495) Update README_CN.md (elizaOS#2489) Update README_JA.md (elizaOS#2490) feat: introduce Dependency Injection to enhance developer experience (elizaOS#2115) chore: corrected the link to the banner (elizaOS#2491) chore: update createToken.ts (elizaOS#2493) feat: Solana plugin improvement for flawless transfers (elizaOS#2340) Update README_DE.md (elizaOS#2483) feat: Sui supports the secp256k1/secp256r1 algorithms (elizaOS#2476) chore: remove eslint, prettier, tslint and replace with biome (elizaOS#2439) chore: let -> const fix: lint command fix: unused import and type errors chore: console -> elizaLogger fix: error logging and remove unused import fix: remove unused error var chore: pnpm lock file add openai var Revert "Revert "refactor: dockerize smoke tests (elizaOS#2420)" (elizaOS#2459)" fix swaps evm plugin (elizaOS#2332) ...
- Loading branch information
Showing
914 changed files
with
10,482 additions
and
4,406 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 was deleted.
Oops, something went wrong.
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
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
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,88 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json", | ||
"organizeImports": { | ||
"enabled": false | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"suspicious": { | ||
"noExplicitAny": "warn", | ||
"noArrayIndexKey": "warn", | ||
"noPrototypeBuiltins": "warn", | ||
"noDuplicateObjectKeys": "warn", | ||
"noGlobalIsNan": "warn", | ||
"noDuplicateFontNames": "warn", | ||
"noSelfCompare": "warn", | ||
"noDoubleEquals": "warn", | ||
"noImplicitAnyLet": "warn", | ||
"noAssignInExpressions": "warn", | ||
"noExportsInTest": "warn", | ||
"noConstEnum": "warn", | ||
"noEmptyInterface": "warn" | ||
}, | ||
"correctness": { | ||
"noUnusedVariables": "warn", | ||
"noUnreachable": "warn", | ||
"useExhaustiveDependencies": "warn", | ||
"noSwitchDeclarations": "warn", | ||
"noUnnecessaryContinue": "warn", | ||
"noInnerDeclarations": "warn" | ||
}, | ||
"style": { | ||
"useConst": "warn", | ||
"useTemplate": "warn", | ||
"useImportType": "warn", | ||
"useNodejsImportProtocol": "warn", | ||
"noUselessElse": "warn", | ||
"useSelfClosingElements": "warn", | ||
"useNumberNamespace": "warn", | ||
"noUnusedTemplateLiteral": "warn", | ||
"noInferrableTypes": "warn", | ||
"noNonNullAssertion": "warn", | ||
"noParameterAssign": "warn", | ||
"useDefaultParameterLast": "warn", | ||
"useExponentiationOperator": "warn", | ||
"noVar": "warn", | ||
"useSingleVarDeclarator": "warn", | ||
"useExportType": "warn" | ||
}, | ||
"a11y": { | ||
"useAltText": "warn", | ||
"useFocusableInteractive": "warn", | ||
"useMediaCaption": "warn", | ||
"noSvgWithoutTitle": "warn", | ||
"useKeyWithClickEvents": "warn" | ||
}, | ||
"complexity": { | ||
"noForEach": "warn", | ||
"useOptionalChain": "warn", | ||
"useArrowFunction": "warn", | ||
"useFlatMap": "warn", | ||
"useLiteralKeys": "warn", | ||
"noBannedTypes": "warn", | ||
"noStaticOnlyClass": "warn", | ||
"noThisInStatic": "warn", | ||
"noUselessConstructor": "warn", | ||
"noUselessTernary": "warn", | ||
"noUselessSwitchCase": "warn", | ||
"noUselessCatch": "warn" | ||
}, | ||
"performance": { | ||
"noDelete": "warn", | ||
"noAccumulatingSpread": "warn" | ||
} | ||
}, | ||
"ignore": ["**/dist/**", "**/node_modules/**", "**/coverage/**", "**/*.json"] | ||
}, | ||
"formatter": { | ||
"enabled": false | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"quoteStyle": "double", | ||
"semicolons": "always" | ||
} | ||
} | ||
} |
Oops, something went wrong.