| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "arrowParens": "always",
- "semi": false,
- "tabWidth": 2,
- "printWidth": 80,
- "singleQuote": true,
- "jsxSingleQuote": true,
- "trailingComma": "es5",
- "bracketSpacing": true,
- "endOfLine": "lf",
- "plugins": [
- "@trivago/prettier-plugin-sort-imports",
- "prettier-plugin-tailwindcss"
- ],
- "tailwindFunctions": ["cn", "clsx"],
- "tailwindStylesheet": "./src/styles/index.css",
- "importOrder": [
- "^path$",
- "^vite$",
- "^@vitejs/(.*)$",
- "^react$",
- "^react-dom/client$",
- "^react/(.*)$",
- "^globals$",
- "^zod$",
- "^axios$",
- "^date-fns$",
- "^react-hook-form$",
- "^use-intl$",
- "^@radix-ui/(.*)$",
- "^@hookform/resolvers/zod$",
- "^@tanstack/react-query$",
- "^@tanstack/react-router$",
- "^@tanstack/react-table$",
- "<THIRD_PARTY_MODULES>",
- "^@/assets/(.*)",
- "^@/api/(.*)$",
- "^@/stores/(.*)$",
- "^@/lib/(.*)$",
- "^@/utils/(.*)$",
- "^@/constants/(.*)$",
- "^@/context/(.*)$",
- "^@/hooks/(.*)$",
- "^@/components/layouts/(.*)$",
- "^@/components/ui/(.*)$",
- "^@/components/errors/(.*)$",
- "^@/components/(.*)$",
- "^@/features/(.*)$",
- "^[./]"
- ]
- }
|