mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 11:12:48 +00:00
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
|
|
/** @type {import('prettier').Config & import('prettier-plugin-tailwindcss').PluginOptions} */
|
||
|
|
const config = {
|
||
|
|
plugins: ["prettier-plugin-tailwindcss"],
|
||
|
|
tabWidth: 1,
|
||
|
|
useTabs: true,
|
||
|
|
arrowParens: "always",
|
||
|
|
printWidth: 120,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default config;
|