ui-thing
Version:
CLI used to add Nuxt 3 components to a project
17 lines (15 loc) • 450 B
text/typescript
export const PRETTIER_CONFIG = `{
"arrowParens": "always",
"endOfLine": "lf",
"plugins": ["@ianvs/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss"],
"printWidth": 100,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": true,
"tailwindFunctions": ["tv"],
"importOrder": ["<BUILTIN_MODULES>", "<THIRD_PARTY_MODULES>", "<TYPES>", "", "^[.]"]
}
`;