Skip to content

Commit 6184be9

Browse files
🎨 style(src): format with prettier
1 parent 0cab7e1 commit 6184be9

File tree

7 files changed

+16
-19
lines changed

7 files changed

+16
-19
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dev": "next",
1111
"build": "next build",
1212
"start": "next start",
13-
"lint": "next lint --fix",
13+
"lint": "next lint",
1414
"lint:deadcode": "! ts-prune | grep -v \"used in module\"",
1515
"format": "prettier --write src/",
1616
"codegen:schema": "graphql-codegen --config codegen.yml --require dotenv/config",

src/components/pages/home/overview-section.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ const OverviewSection: FunctionComponent<
5656
</Typography.p>
5757

5858
<Typography.p>
59-
I have been building digital projects for years now and I have
60-
launched products for some of the world’s most respected brands, hired
61-
and mentored software engineers, bootstrapped and ran multidisciplinary
59+
I have been building digital projects for years now and I have launched
60+
products for some of the world’s most respected brands, hired and
61+
mentored software engineers, bootstrapped and ran multidisciplinary
6262
teams and implemented organization-wide engineering initiatives.
6363
</Typography.p>
6464

src/content/biography/experience.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@
9090
"description": "I've helped for months the organization of the local edition of CocoaHeads (the Fortaleza chapter) in many areas which include gathering speakers and sponsors and giving multidisciplinary lectures."
9191
}
9292
]
93-
}
93+
}

src/content/biography/life.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ color: 'orangeCoral'
55

66
I was born in 1998 in Fortaleza, Brazil 🇧🇷.
77

8-
After graduating from High School, I decided I wanted to be an expert in building User Interfaces, so I set my mind on mastering web and mobile technologies.
8+
After graduating from High School, I decided I wanted to be an expert in building User Interfaces, so I set my mind on mastering web and mobile technologies.
99

10-
I spent countless hours architecting, implementing and optimizing applications for the companies I worked for as well as evenings hacking side projects.
10+
I spent countless hours architecting, implementing and optimizing applications for the companies I worked for as well as evenings hacking side projects.
1111

1212
I've also always been excited about sharing what I know with others. When I was in sophomore in High School, I signed up to present about Git for some of my classmates and ever since I was a speaker at the many meetups I attended.
1313

@@ -32,4 +32,4 @@ Here are some random fun facts, unique things about me and activities I love:
3232
- Gathering friends and family by the beach 🏖️
3333
- Being #1 fan of my lovely wife, Jheniffer 💑
3434

35-
The rest is history!
35+
The rest is history!

src/pages/about/experience.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ import { useMDXComponent } from 'next-contentlayer/hooks';
33
import { MDXRemote } from 'next-mdx-remote';
44
import { NextSeo as Metadata } from 'next-seo';
55
import { coreContent } from 'pliny/utils/contentlayer';
6-
import ReactMarkdown from 'react-markdown';
76

87
import { siteMetadata } from 'config/constants';
98

109
import BiographyContentService from 'services/biography-content-service';
1110

12-
import { serializeExperience, WorkExperience } from 'utils/linkedin';
11+
import { serializeExperience } from 'utils/linkedin';
1312

1413
import experience from 'content/biography/experience.json';
1514

@@ -52,8 +51,6 @@ export async function getStaticProps() {
5251
* COMPONENTS
5352
*/
5453

55-
56-
5754
/*~
5855
* PAGE
5956
*/

src/pages/posts/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const PostsPage: NextPage<Props> = ({ allPosts }) => {
4949
/>
5050
<Layout
5151
heading="Ideas. Stories. Updates."
52-
headingGradient='minnesota'
52+
headingGradient="minnesota"
5353
subHeading={<SearchBar label={`Search posts`} onChange={onChange} />}
5454
>
5555
<Suspense fallback={<AllPostsSectionSkeleton items={3} />}>

src/utils/a11y.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import React, { useEffect } from 'react'
2-
import ReactDOM from 'react-dom'
1+
import React, { useEffect } from 'react';
2+
import ReactDOM from 'react-dom';
33

44
export const useAxe = () => {
55
useEffect(() => {
66
if (process.env.NODE_ENV !== 'production') {
7-
const axe = require('@axe-core/react')
8-
axe(React, ReactDOM, 1000)
7+
const axe = require('@axe-core/react');
8+
axe(React, ReactDOM, 1000);
99
}
10-
}, [])
11-
}
10+
}, []);
11+
};

0 commit comments

Comments
 (0)