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