1
0
Fork 0
mirror of synced 2026-06-05 08:05:14 +00:00
action-gh-release/.prettierrc.js
Rui Chen c8d8e91662
chore: add prettier config (#633)
Signed-off-by: Rui Chen <rui@chenrui.dev>
2025-06-11 11:34:43 -04:00

11 lines
184 B
JavaScript

/**
* @type {import('prettier').Config}
*/
module.exports = {
trailingComma: 'all',
tabWidth: 2,
semi: true,
singleQuote: true,
printWidth: 100,
bracketSpacing: true,
};