-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update UI * Update deps * Remove dock animation
- Loading branch information
Showing
110 changed files
with
3,227 additions
and
2,756 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** @typedef {import("prettier").Config} PrettierConfig */ | ||
/** @typedef {import("prettier-plugin-tailwindcss").PluginOptions} TailwindConfig */ | ||
/** @typedef {import("@ianvs/prettier-plugin-sort-imports").PluginConfig} SortImportsConfig */ | ||
|
||
/** @type { PrettierConfig | SortImportsConfig | TailwindConfig } */ | ||
const config = { | ||
arrowParens: "always", | ||
printWidth: 80, | ||
singleQuote: false, | ||
jsxSingleQuote: false, | ||
semi: true, | ||
trailingComma: "all", | ||
tabWidth: 2, | ||
plugins: [ | ||
"@ianvs/prettier-plugin-sort-imports", | ||
"prettier-plugin-tailwindcss", | ||
], | ||
importOrder: [ | ||
"^(react/(.*)$)|^(react$)|^(react-native(.*)$)", | ||
"^(next/(.*)$)|^(next$)", | ||
"^(expo(.*)$)|^(expo$)", | ||
"<THIRD_PARTY_MODULES>", | ||
"", | ||
"", | ||
"^~/utils/(.*)$", | ||
"^~/components/(.*)$", | ||
"^~/styles/(.*)$", | ||
"^~/", | ||
"^[../]", | ||
"^[./]", | ||
], | ||
importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"], | ||
importOrderTypeScriptVersion: "4.4.0", | ||
}; | ||
|
||
export default config; |
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,3 +1,3 @@ | ||
# App | ||
|
||
An interactive react app. | ||
An interactive react app. |
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
"components": "@/components", | ||
"utils": "@/lib/utils" | ||
} | ||
} | ||
} |
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.