mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
23 lines
515 B
JavaScript
23 lines
515 B
JavaScript
module.exports = {
|
|
semi: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'es5',
|
|
printWidth: 100,
|
|
bracketSpacing: true,
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
plugins: ['prettier-plugin-tailwindcss', '@trivago/prettier-plugin-sort-imports'],
|
|
importOrder: [
|
|
'^(react/(.*)$)|^(react$)',
|
|
'^(next/(.*)$)|^(next$)',
|
|
'<THIRD_PARTY_MODULES>',
|
|
'^@/components/(.*)$',
|
|
'^@/lib/(.*)$',
|
|
'^@/stores/(.*)$',
|
|
'^@/(.*)$',
|
|
'^[./]',
|
|
],
|
|
importOrderSortSpecifiers: true,
|
|
}
|