mirror of
https://github.com/p-stream/extension.git
synced 2026-01-11 12:00:48 +00:00
9 lines
151 B
JavaScript
9 lines
151 B
JavaScript
/**
|
|
* @type {import('prettier').Options}
|
|
*/
|
|
export default {
|
|
printWidth: 120,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
endOfLine: 'auto',
|
|
};
|