mirror of
https://gitea.redwind.top/Austin/subscription
synced 2024-11-16 22:53:42 +08:00
10 lines
140 B
JavaScript
10 lines
140 B
JavaScript
|
// @ts-check
|
||
|
/**
|
||
|
* @type {import('prettier').Config}
|
||
|
*/
|
||
|
module.exports = {
|
||
|
tabWidth: 2,
|
||
|
singleQuote: true,
|
||
|
trailingComma: 'all',
|
||
|
};
|