Files
v10/.prettierrc.cjs
T
2025-09-22 23:39:30 +10:00

41 lines
680 B
JavaScript

module.exports = {
printWidth: 120,
singleQuote: true,
tabWidth: 2,
useTabs: false,
semi: true,
quoteProps: 'as-needed',
jsxSingleQuote: false,
trailingComma: 'es5',
bracketSpacing: true,
bracketSameLine: false,
arrowParens: 'always',
plugins: ['@ianvs/prettier-plugin-sort-imports'],
importOrder: [
'.css$',
'.styles$',
'',
'<TYPES>',
'',
'^__',
'',
'^node:',
'<BUILTIN_MODULES>',
'',
'^react',
'^prop-types$',
'',
'<THIRD_PARTY_MODULES>',
'',
'.+__deprecated__',
'',
'^@mux',
'',
'^@',
'',
'^[$]',
'^[../]',
'^(?!.*[.](svg|png|webp|mp4)$)[./].*$',
],
};