Skip to content

Commit

Permalink
fix: cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Oct 18, 2023
1 parent 60dd6a4 commit c23b110
Show file tree
Hide file tree
Showing 8 changed files with 1,253 additions and 756 deletions.
11 changes: 7 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"parser": "babel-eslint",
"extends": ["plugin:react/recommended", "plugin:prettier/recommended", "plugin:jsx-a11y/recommended", "prettier/react"],
"extends": [
"plugin:react/recommended",
"plugin:prettier/recommended",
"plugin:jsx-a11y/recommended",
"prettier/react"
],
"rules": {
"react/react-in-jsx-scope": "off"
},
Expand All @@ -15,9 +20,7 @@
"@typescript-eslint/no-unused-vars": ["error"],
"@typescript-eslint/no-explicit-any": "off"
},
"extends": [
"plugin:@typescript-eslint/recommended"
]
"extends": ["plugin:@typescript-eslint/recommended"]
}
],
"globals": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/setup-node@v3
- uses: pnpm/action-setup@v2
with:
version: 6.0.2
version: 6.0.2
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
Expand Down
1 change: 0 additions & 1 deletion components/DocsMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ const DocsMenu: React.ComponentType = () => {
href="/docs/graphql#using-graphql-as-query-language-for-vulcain"
/>


<MenuLink text="Cache Considerations" href="/docs/cache" />

<MenuLink text="Help" href="/docs/help" />
Expand Down
4 changes: 2 additions & 2 deletions components/home/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ const Main: React.ComponentType = () => {
client-driven hypermedia APIs
</Typography>
<Typography paragraph>
Vulcain is a brand new protocol using preload hints, Early Hints or HTTP/2 Server Push to create fast and idiomatic{' '}
<strong>client-driven REST</strong> APIs.
Vulcain is a brand new protocol using preload hints, Early Hints or HTTP/2 Server Push to create fast
and idiomatic <strong>client-driven REST</strong> APIs.
</Typography>
<Typography paragraph>
An open source gateway server which you can put on top of <strong>any existing web API</strong> to
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"build": "next build",
"start": "next start",
"prebuild": "node utils/prebuild.js && node utils/generateSiteMap.js",
"export": "next export"
"export": "next export",
"prettier": "prettier"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
Expand Down
5 changes: 1 addition & 4 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ const App: React.ComponentType<AppProps> = ({ Component, pageProps }) => {
<meta property="og:url" content="https://vulcain.rocks" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Vulcain.rocks" />
<meta
property="og:description"
content="Use preloading to create fast and idiomatic client-driven REST APIs"
/>
<meta property="og:description" content="Use preloading to create fast and idiomatic client-driven REST APIs" />
<meta property="og:image" content="https://vulcain.rocks/opengraph.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@dunglas" />
Expand Down
Loading

0 comments on commit c23b110

Please sign in to comment.