48 lines
1.1 KiB
JavaScript
48 lines
1.1 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>",
|
|
"^(next/(.*)$)|^(next$)",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"",
|
|
"<TYPES>^@kan",
|
|
"^@kan/(.*)$",
|
|
"",
|
|
"<TYPES>^[.|..|~]",
|
|
"^~/",
|
|
"^[../]",
|
|
"^[./]",
|
|
],
|
|
importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"],
|
|
importOrderTypeScriptVersion: "4.4.0",
|
|
overrides: [
|
|
{
|
|
files: "*.json.hbs",
|
|
options: {
|
|
parser: "json",
|
|
},
|
|
},
|
|
{
|
|
files: "*.js.hbs",
|
|
options: {
|
|
parser: "babel",
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config; |