9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
/**
|
|
* @type {import('prettier').Config}
|
|
*/
|
|
module.exports = {
|
|
bracketSpacing: false,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
arrowParens: 'avoid',
|
|
};
|