mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 12:32:48 +00:00
27 lines
642 B
JavaScript
27 lines
642 B
JavaScript
/** @type {import("@ianvs/prettier-plugin-sort-imports").PrettierConfig} */
|
|
module.exports = {
|
|
printWidth: 100,
|
|
arrowParens: "avoid",
|
|
importOrder: [
|
|
"<BUILTIN_MODULES>",
|
|
"",
|
|
"^(react/(.*)$)|^(react$)",
|
|
"^(next/(.*)$)|^(next$)",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"",
|
|
"^types$",
|
|
"^@/types/(.*)$",
|
|
"^@/config/(.*)$",
|
|
"^@/lib/(.*)$",
|
|
"^@/hooks/(.*)$",
|
|
"^@/components/ui/(.*)$",
|
|
"^@/components/(.*)$",
|
|
"^@/styles/(.*)$",
|
|
"^@/app/(.*)$",
|
|
"",
|
|
"^[./]",
|
|
],
|
|
importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"],
|
|
plugins: ["@ianvs/prettier-plugin-sort-imports"],
|
|
};
|