Skip to content

Commit 99be5cb

Browse files
style: format code with ClangFormat, dotnet-format, Prettier, RuboCop, Rustfmt, Scalafmt, StandardJS, StandardRB and swift-format
This commit fixes the style issues introduced in c63457d according to the output from ClangFormat, dotnet-format, Prettier, RuboCop, Rustfmt, Scalafmt, StandardJS, StandardRB and swift-format. Details: None
1 parent c63457d commit 99be5cb

5 files changed

Lines changed: 6 additions & 9 deletions

File tree

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ export default function App() {
2020
))}
2121
</main>
2222
);
23-
}
23+
}

src/components/ToolCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export default function ToolCard({ name, content }: Props) {
1212
{content}
1313
</div>
1414
);
15-
}
15+
}

src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ const container = document.getElementById("app");
77
if (!container) throw new Error("No root container found");
88

99
const root = createRoot(container);
10-
root.render(<App />);
10+
root.render(<App />);

src/sentry.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ Sentry.init({
66
dsn: "https://de284553b9b4c7a3f7bcd9786eb802f2@o4509151884148736.ingest.us.sentry.io/4510040067735557",
77
release: "aiot@0.2",
88
environment: "production",
9-
integrations:[
10-
new BrowserTracing(),
11-
new Replay(),
12-
],
9+
integrations: [new BrowserTracing(), new Replay()],
1310
tracesSampleRate: 1.0,
1411
replaysSessionSampleRate: 0.1,
1512
replaysOnErrorSampleRate: 1.0,
1613
enableLogs: true,
17-
});
14+
});

src/tools/Calculator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ export default function Calculator() {
1414
<button onClick={() => alert(eval(value))}>Calculate</button>
1515
</div>
1616
);
17-
}
17+
}

0 commit comments

Comments
 (0)