Skip to content

Commit 156befc

Browse files
committed
chore: prettify
1 parent 8c9c13b commit 156befc

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/publish-ci/are-the-types-wrong/main.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ interface Checks {
7575
problems?: Problem[]
7676
}
7777

78-
const rtkPackagePath = path.join(__dirname, './package.tgz')
78+
const rsPackagePath = path.join(__dirname, './package.tgz')
7979

80-
const rtkPackageTgzBytes = fs.readFileSync(rtkPackagePath)
80+
const rsPackageTgzBytes = fs.readFileSync(rsPackagePath)
8181

8282
function Header({ text, width }: { text: string; width: number | string }) {
8383
return (
@@ -114,13 +114,15 @@ function Traces({
114114
<Box
115115
width="100%"
116116
key={`resolutionDetails-${resolutionKind}-${subpath}`}
117-
flexDirection="column">
117+
flexDirection="column"
118+
>
118119
<Text bold>{resolutionKind} Traces:</Text>
119120
<Box flexDirection="column">
120121
{details.trace.map((traceLine, i) => {
121122
return (
122123
<Text
123-
key={`resolutionDetails-traces-${subpath}-${resolutionKind}-${i}`}>
124+
key={`resolutionDetails-traces-${subpath}-${resolutionKind}-${i}`}
125+
>
124126
{traceLine}
125127
</Text>
126128
)
@@ -243,7 +245,7 @@ interface CLIOptions {
243245
}
244246

245247
;(async function main({ nonErrorProblems = [] }: CLIOptions) {
246-
const analysis = await checkTgz(rtkPackageTgzBytes)
248+
const analysis = await checkTgz(rsPackageTgzBytes)
247249

248250
const checks: Checks = {
249251
analysis,

.prettierrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"arrowParens": "avoid",
3-
"jsxBracketSameLine": true,
43
"printWidth": 80,
54
"semi": false,
65
"singleQuote": true,

0 commit comments

Comments
 (0)