mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 07:27:57 -05:00
* added turborepo * finished turbo migration * updated gitignore * use dotenv & run format * fixed error in docs * remove standalone deployment in prod * fix ts error, remove ignore ts errors during build * added formatter to the end of the docs generator
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
{
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "es5",
|
|
"printWidth": 100,
|
|
"bracketSpacing": true,
|
|
"arrowParens": "always",
|
|
"endOfLine": "lf",
|
|
"useTabs": false,
|
|
"quoteProps": "as-needed",
|
|
"jsxSingleQuote": false,
|
|
"bracketSameLine": false,
|
|
"htmlWhitespaceSensitivity": "css",
|
|
"vueIndentScriptAndStyle": false,
|
|
"embeddedLanguageFormatting": "auto",
|
|
"singleAttributePerLine": false,
|
|
"plugins": ["prettier-plugin-tailwindcss", "@trivago/prettier-plugin-sort-imports"],
|
|
"importOrder": [
|
|
"^(.*)/__test-utils__/mock-dependencies$",
|
|
"^(vitest|jest)$",
|
|
"^(react/(.*)$)|^(react$)",
|
|
"^(next/(.*)$)|^(next$)",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"^@/components/(.*)$",
|
|
"^@/lib/(.*)$",
|
|
"^@/stores/(.*)$",
|
|
"^@/hooks/(.*)$",
|
|
"^@/utils/(.*)$",
|
|
"^@/types/(.*)$",
|
|
"^@/styles/(.*)$",
|
|
"^@/(.*)$",
|
|
"^[./]"
|
|
],
|
|
"importOrderSortSpecifiers": true,
|
|
"importOrderCaseInsensitive": true,
|
|
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"]
|
|
}
|