mirror of
https://github.com/gkd-kit/docs.git
synced 2024-11-16 05:42:19 +08:00
10 lines
138 B
JavaScript
10 lines
138 B
JavaScript
// @ts-check
|
|
/**
|
|
* @type {import('prettier').Config}
|
|
*/
|
|
export default {
|
|
tabWidth: 2,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
};
|