Skip to content

Commit

Permalink
Various improvments
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamahl19 committed Jan 22, 2024
1 parent 6a3e273 commit 0ff04f8
Show file tree
Hide file tree
Showing 13 changed files with 174 additions and 811 deletions.
13 changes: 7 additions & 6 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Dependencies
node_modules
# dependencies
/node_modules

# Testing
coverage
# testing
/coverage

# Production
# vite
dist
dist-ssr
.swc

# IDE
# ide
.idea

mockServiceWorker.js
4 changes: 2 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ module.exports = {
},
tailwindcss: {
callees: ['clsx', 'cva', 'cn'],
config: 'tailwind.config.js',
config: 'tailwind.config.ts',
},
},
rules: {
Expand Down Expand Up @@ -176,7 +176,7 @@ module.exports = {
],
},
{
files: ['vite.config.ts', 'i18next-parser.config.ts'],
files: ['vite.config.ts', 'i18next-parser.config.ts', 'tailwind.config.ts'],
parserOptions: {
project: ['./tsconfig.node.json'],
},
Expand Down
30 changes: 16 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
# Dependencies
node_modules
# dependencies
/node_modules

# Testing
coverage
# testing
/coverage

# Production
# vite
dist
dist-ssr
.swc

# Misc
# misc
.DS_Store
Thumbs.db
*.local

# Logs
# debug
logs
*.log
npm-debug.log*

# IDE
# local env files
.env*.local

# typescript
*.tsbuildinfo

# ide
.idea

# ESLint
# eslint
.eslintcache

# SWC
.swc
13 changes: 7 additions & 6 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Dependencies
node_modules
# dependencies
/node_modules

# Testing
coverage
# testing
/coverage

# Production
# vite
dist
dist-ssr
.swc

# IDE
# ide
.idea

mockServiceWorker.js
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
- [tailwind-merge](https://github.com/dcastil/tailwind-merge) - merge Tailwind classes without conflicts
- [clsx](https://github.com/lukeed/clsx) - utility to construct classNames conditionally
- [cva](https://github.com/joe-bell/cva) - utility to create style variants
- [TW Config Viewer](https://github.com/rogden/tailwind-config-viewer) - UI tool for visualizing Tailwind config
- [Radix UI](https://www.radix-ui.com/primitives) - low-level UI component library with a focus on a11y
- [shadcn/ui](https://ui.shadcn.com/) - collection of designed components mostly based on Radix UI with focus on a11y
- [lucide icons](https://lucide.dev/) - icons set
Expand Down
5 changes: 3 additions & 2 deletions components.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"config": "tailwind.config.ts",
"css": "src/global.css",
"baseColor": "neutral",
"cssVariables": true
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/common/components",
Expand Down
Loading

1 comment on commit 0ff04f8

@vercel
Copy link

@vercel vercel bot commented on 0ff04f8 Jan 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.