-
Notifications
You must be signed in to change notification settings - Fork 839
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17946d5
commit 55cc033
Showing
85 changed files
with
1,725 additions
and
2,209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Auto Fix Lint and Format | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
auto-fix: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.head_ref }} | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
|
||
- name: Set up Bun | ||
uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: "latest" | ||
|
||
- name: Install dependencies | ||
run: bun install | ||
|
||
- name: Run linter and fix issues | ||
run: bun run lint:fix | ||
|
||
- name: Run formatter | ||
run: bun run format | ||
|
||
- name: Check for changes | ||
id: check_changes | ||
run: | | ||
git diff --exit-code || echo "has_changes=true" >> $GITHUB_ENV | ||
- name: Commit and push changes | ||
if: steps.check_changes.outputs.has_changes == 'true' || env.has_changes == 'true' | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "chore: auto-fix linting and formatting issues" | ||
commit_options: "--no-verify" | ||
file_pattern: "." | ||
|
||
- name: Add PR comment | ||
if: steps.check_changes.outputs.has_changes == 'true' || env.has_changes == 'true' | ||
uses: actions/github-script@v7 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: 'Linting and formatting issues were automatically fixed. Please review the changes.' | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export default { | ||
semi: false, | ||
singleQuote: false, | ||
printWidth: 100, | ||
tabWidth: 2, | ||
trailingComma: "all", | ||
importOrder: ["^@core/(.*)$", "^@server/(.*)$", "^@ui/(.*)$", "^[./]"], | ||
importOrderSeparation: true, | ||
importOrderSortSpecifiers: true, | ||
endOfLine: "auto", | ||
plugins: ["prettier-plugin-tailwindcss", "@trivago/prettier-plugin-sort-imports"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
"use client"; | ||
"use client" | ||
|
||
import { useTranslations } from "next-intl"; | ||
import { useTranslations } from "next-intl" | ||
|
||
type GlobalInfoProps = { | ||
countries: string[]; | ||
}; | ||
countries: string[] | ||
} | ||
|
||
export default function GlobalInfo({ countries }: GlobalInfoProps) { | ||
const t = useTranslations("Global"); | ||
const t = useTranslations("Global") | ||
return ( | ||
<section className="flex items-center justify-between"> | ||
<p className="text-sm font-medium opacity-40"> | ||
{t("Distributions")} {countries.length} {t("Regions")} | ||
</p> | ||
</section> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
"use client"; | ||
"use client" | ||
|
||
import { Loader } from "@/components/loading/Loader"; | ||
import { useTranslations } from "next-intl"; | ||
import { Loader } from "@/components/loading/Loader" | ||
import { useTranslations } from "next-intl" | ||
|
||
export default function GlobalLoading() { | ||
const t = useTranslations("Global"); | ||
const t = useTranslations("Global") | ||
return ( | ||
<section className="flex flex-col gap-4 mt-[3.2px]"> | ||
<div className="flex min-h-40 flex-col items-center justify-center font-medium text-sm"> | ||
{t("Loading")} | ||
<Loader visible={true} /> | ||
</div> | ||
</section> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.