Skip to content

Commit 9aecbec

Browse files
Shawclaude
andcommitted
fix(plugins): unblock format:check across 21 plugins
Re-formatted plugin sources for biome-using and prettier-using plugins so Quality (Extended)'s Format Check passes. Earlier biome --write fixes were applied uniformly but several plugins use Prettier (plugin-clanker, dexscreener, music-library, music-player, nvidiacloud, pumpfun-streaming, retake, streaming-base, telegram, twitch-streaming, twitter, x-streaming, xmtp, youtube-streaming) and needed prettier --write. Verified: bunx turbo run format:check --filter='./plugins/*' now reports 67/67 successful. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 7bd1e23 commit 9aecbec

75 files changed

Lines changed: 1496 additions & 1115 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

plugins/plugin-action-bench/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,3 @@
7171
"typescript": "^5.7.2"
7272
}
7373
}
74-
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
/** @type {import('postcss-load-config').Config} */
2-
import autoprefixer from 'autoprefixer';
3-
import tailwindcss from 'tailwindcss';
2+
import autoprefixer from "autoprefixer";
3+
import tailwindcss from "tailwindcss";
44

55
const config = {
6-
plugins: [
7-
tailwindcss(),
8-
autoprefixer(),
9-
],
6+
plugins: [tailwindcss(), autoprefixer()],
107
};
118

129
export default config;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import Header from './components/Header'
2-
import TestSelector from './components/TestSelector'
1+
import Header from "./components/Header";
2+
import TestSelector from "./components/TestSelector";
33

44
function App() {
55
return (
66
<div className="container mx-auto max-w-4xl p-6">
77
<Header />
88
<TestSelector />
99
</div>
10-
)
10+
);
1111
}
1212

13-
export default App
13+
export default App;

plugins/plugin-action-bench/src/frontend/src/components/Header.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ const Header: React.FC = () => {
22
return (
33
<div className="text-center mb-10">
44
<h1 className="text-4xl font-bold text-primary mb-3">🚀 Action Bench</h1>
5-
<p className="text-lg text-muted-foreground">Benchmark and test ElizaOS action performance</p>
5+
<p className="text-lg text-muted-foreground">
6+
Benchmark and test ElizaOS action performance
7+
</p>
68
</div>
7-
)
8-
}
9+
);
10+
};
911

10-
export default Header
12+
export default Header;

0 commit comments

Comments
 (0)