Skip to content

Commit

Permalink
run splits view
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverGrack committed Feb 18, 2024
1 parent 754fe03 commit e55b17b
Show file tree
Hide file tree
Showing 509 changed files with 3,180 additions and 58 deletions.
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@
"eslint.codeActionsOnSave.rules": [
"@typescript-eslint/no-unused-vars",
"@typescript-eslint/consistent-type-imports",
"prettier/prettier",
"prettier/prettier"
],
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
"tailwindCSS.experimental.classRegex": [
["Classes \\=([^;]*);", "'([^']*)'"],
["Classes \\=([^;]*);", "\"([^\"]*)\""],
["Classes \\=([^;]*);", "\\`([^\\`]*)\\`"]
]
}
19 changes: 19 additions & 0 deletions @/additions/tabs.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { TabsList, TabsTrigger } from '@/components/ui/tabs';
import { cn } from '@/lib/utils';
import React from 'react';

export const TabsTriggerTransparent = React.forwardRef<
React.ElementRef<typeof TabsTrigger>,
React.ComponentPropsWithoutRef<typeof TabsTrigger>
>(({ className, ...props }, ref) => (
<TabsTrigger
ref={ref}
className={cn('data-[state=active]:bg-slate-300 dark:data-[state=active]:bg-slate-800', className)}
{...props}
/>
));

export const TabsListTransparent = React.forwardRef<
React.ElementRef<typeof TabsList>,
React.ComponentPropsWithoutRef<typeof TabsList>
>(({ className, ...props }, ref) => <TabsList ref={ref} className={cn('bg-transparent', className)} {...props} />);
18 changes: 10 additions & 8 deletions prettier.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
/** @type {import('prettier').Config & import('prettier-plugin-tailwindcss').options} */
const config = {
trailingComma: 'all',
tabWidth: 4,
printWidth: 120,
semi: true,
singleQuote: true,
plugins: ['prettier-plugin-tailwindcss'],
}
trailingComma: 'all',
tabWidth: 4,
printWidth: 120,
semi: true,
singleQuote: true,
plugins: ['prettier-plugin-tailwindcss'],
tailwindFunctions: ['cn'],
tailwindAttributes: ['iconClassName', 'textClassName'],
};

export default config
export default config;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/ingame-sprites/bestiary/bestiary_bee_f.png
Binary file added public/ingame-sprites/bestiary/bestiary_bee_s.png
Binary file added public/ingame-sprites/bestiary/bestiary_bug_f.png
Binary file added public/ingame-sprites/bestiary/bestiary_bug_s.png
Loading

0 comments on commit e55b17b

Please sign in to comment.