9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
/** @type {import('prettier').Config} */
|
|
module.exports = {
|
|
singleQuote: true,
|
|
semi: false,
|
|
arrowParens: 'always',
|
|
trailingComma: 'es5',
|
|
printWidth: 120,
|
|
}
|