38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
import { fileURLToPath } from "url";
|
|
|
|
/** @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 = {
|
|
plugins: [
|
|
"@ianvs/prettier-plugin-sort-imports",
|
|
"prettier-plugin-tailwindcss",
|
|
],
|
|
tailwindConfig: fileURLToPath(
|
|
new URL("../../tooling/tailwind/web.ts", import.meta.url),
|
|
),
|
|
tailwindFunctions: ["cn", "cva"],
|
|
importOrder: [
|
|
"<TYPES>",
|
|
"^(react/(.*)$)|^(react$)|^(react-native(.*)$)",
|
|
"^(next/(.*)$)|^(next$)",
|
|
"^(expo(.*)$)|^(expo$)",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"",
|
|
"<TYPES>^@lifetracker",
|
|
"^@lifetracker/(.*)$",
|
|
"",
|
|
"<TYPES>^[.|..|~]",
|
|
"^~/",
|
|
"^[../]",
|
|
"^[./]",
|
|
],
|
|
importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"],
|
|
importOrderTypeScriptVersion: "4.4.0",
|
|
endOfLine: "auto",
|
|
};
|
|
|
|
export default config;
|