-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from fuma-nama/main
Add Markdown Support & Translator Model
- Loading branch information
Showing
46 changed files
with
1,153 additions
and
195 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 |
---|---|---|
|
@@ -18,4 +18,4 @@ | |
"hooks": "@/hooks" | ||
}, | ||
"iconLibrary": "lucide" | ||
} | ||
} |
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,6 +1,6 @@ | ||
import { clsx, type ClassValue } from "clsx" | ||
import { twMerge } from "tailwind-merge" | ||
import { clsx, type ClassValue } from "clsx"; | ||
import { twMerge } from "tailwind-merge"; | ||
|
||
export function cn(...inputs: ClassValue[]) { | ||
return twMerge(clsx(inputs)) | ||
return twMerge(clsx(inputs)); | ||
} |
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,26 +1,27 @@ | ||
{ | ||
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"ignore": ["node_modules"], | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"a11y": { | ||
"noSvgWithoutTitle": "off", | ||
"useKeyWithClickEvents": "off" | ||
}, | ||
"style": { | ||
"noNonNullAssertion": "off" | ||
}, | ||
"correctness": { | ||
"useExhaustiveDependencies": "off" | ||
} | ||
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"ignore": ["node_modules"], | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"a11y": { | ||
"noSvgWithoutTitle": "off", | ||
"useKeyWithClickEvents": "off" | ||
}, | ||
"style": { | ||
"noNonNullAssertion": "off" | ||
}, | ||
"correctness": { | ||
"useExhaustiveDependencies": "off" | ||
} | ||
}, | ||
"formatter": { | ||
"indentStyle": "space" | ||
} | ||
} | ||
}, | ||
"formatter": { | ||
"indentStyle": "space", | ||
"ignore": ["test/resources", "test/snapshots"] | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -9,4 +9,4 @@ | |
"number": "Verfügbar ab {price, number, currency}", | ||
"date": "Bestellt am {orderDate, date, medium}" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -8,15 +8,18 @@ | |
"clean": "git clean -xdf node_modules", | ||
"clean:workspaces": "turbo clean", | ||
"dev": "turbo dev --parallel", | ||
"test": "turbo test --parallel", | ||
"test": "vitest", | ||
"format": "biome format --write .", | ||
"lint": "turbo lint && manypkg check", | ||
"typecheck": "turbo typecheck" | ||
}, | ||
"dependencies": { | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.9.4", | ||
"@types/bun": "^1.1.14", | ||
"@types/node": "^22.10.2", | ||
"turbo": "2.3.3", | ||
"typescript": "^5.7.2" | ||
}, | ||
"packageManager": "[email protected]" | ||
"typescript": "^5.7.2", | ||
"vitest": "^2.1.8" | ||
} | ||
} |
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
Oops, something went wrong.