forked from magicuidesign/magicui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Migrate to shadcn cli and update dependencies (magicuidesign#337)
* feat: mvp shadcn cli working * fix: update conf files * fix: lint and prettier * fix: lint and prettier
- Loading branch information
1 parent
c779f74
commit 7b591e3
Showing
329 changed files
with
13,071 additions
and
2,815 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
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 |
---|---|---|
|
@@ -40,5 +40,3 @@ yarn-error.log* | |
next-env.d.ts | ||
|
||
.contentlayer | ||
.react-email | ||
.turbo |
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,33 @@ | ||
/** @type {import('prettier').Config} */ | ||
module.exports = { | ||
endOfLine: "lf", | ||
semi: false, | ||
singleQuote: false, | ||
tabWidth: 2, | ||
trailingComma: "es5", | ||
importOrder: [ | ||
"^(react/(.*)$)|^(react$)", | ||
"^(next/(.*)$)|^(next$)", | ||
"<THIRD_PARTY_MODULES>", | ||
"", | ||
"^types$", | ||
"^@/types/(.*)$", | ||
"^@/config/(.*)$", | ||
"^@/lib/(.*)$", | ||
"^@/hooks/(.*)$", | ||
"^@/components/ui/(.*)$", | ||
"^@/components/(.*)$", | ||
"^@/registry/(.*)$", | ||
"^@/styles/(.*)$", | ||
"^@/app/(.*)$", | ||
"", | ||
"^[./]", | ||
], | ||
importOrderSeparation: false, | ||
importOrderSortSpecifiers: true, | ||
importOrderBuiltinModulesToTop: true, | ||
importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"], | ||
importOrderMergeDuplicateImports: true, | ||
importOrderCombineTypeAndValueImports: true, | ||
plugins: ["@ianvs/prettier-plugin-sort-imports"], | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.