mirror of
https://github.com/stoatchat/action-git-town.git
synced 2026-06-30 21:47:56 -04:00
fd2156e6c0
* feat: v1
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
experimentalTernaries: true,
|
|
printWidth: 90,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: true,
|
|
quoteProps: 'as-needed',
|
|
trailingComma: 'es5',
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
singleAttributePerLine: false
|
|
}
|