Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hirohata committed Sep 24, 2024
1 parent 7701987 commit a8568c0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/project/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
presets: [require.resolve("@docusaurus/core/lib/babel/preset")],
};
2 changes: 1 addition & 1 deletion docs/project/biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"files": {
"ignoreUnknown": false,
"ignore": []
"ignore": ["build", ".docusaurus", "node_modules"]
},
"formatter": {
"enabled": true,
Expand Down
6 changes: 3 additions & 3 deletions docs/project/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const config: Config = {
tagline: "Let me started over again",
favicon: "img/favicon.ico",

staticDirectories: ['static'],
staticDirectories: ["static"],

// Set the production url of your site here
url: "https://github.com", // TODO: update here after deployed document
Expand Down Expand Up @@ -94,8 +94,8 @@ const config: Config = {
},
{
label: "Exogenesis: Symphony Part 3 (Redemption)",
href: "https://vimeo.com/83496504"
}
href: "https://vimeo.com/83496504",
},
],
},
],
Expand Down
1 change: 1 addition & 0 deletions docs/project/src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export default function HomepageFeatures(): JSX.Element {
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
// biome-ignore lint:lint/suspicious/noArrayIndexKey
<Feature key={idx} {...props} />
))}
</div>
Expand Down

0 comments on commit a8568c0

Please sign in to comment.