2023-07-04 10:39:26 +08:00
|
|
|
// @ts-check
|
|
|
|
/**
|
|
|
|
* @type {import('prettier').Config}
|
|
|
|
*/
|
2023-08-11 20:19:30 +08:00
|
|
|
export default {
|
2023-07-04 10:39:26 +08:00
|
|
|
tabWidth: 2,
|
|
|
|
singleQuote: true,
|
2023-09-04 17:00:31 +08:00
|
|
|
trailingComma: 'all',
|
2023-07-04 10:39:26 +08:00
|
|
|
};
|