chat-bubbles-for-yt/prettier.config.js
2022-03-05 16:58:57 +09:00

11 lines
188 B
JavaScript

const options = {
arrowParens: 'avoid',
singleQuote: true,
bracketSpacing: true,
endOfLine: 'lf',
semi: false,
tabWidth: 2,
trailingComma: 'none'
}
module.exports = options