mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
23 lines
418 B
JavaScript
23 lines
418 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
semi: false,
|
|
singleQuote: false,
|
|
overrides: [
|
|
{
|
|
files: [
|
|
"apps/dev/nextjs/pages/api/auth/[...nextauth].ts",
|
|
"docs/{sidebars,docusaurus.config}.js",
|
|
],
|
|
options: { printWidth: 150 },
|
|
},
|
|
{
|
|
files: ["**/*package.json"],
|
|
options: {
|
|
trailingComma: "none",
|
|
},
|
|
},
|
|
],
|
|
}
|