13 lines
215 B
JavaScript
13 lines
215 B
JavaScript
|
// @ts-check
|
||
|
|
||
|
/** @type {import("prettier").Config} */
|
||
|
const prettierConfig = {
|
||
|
endOfLine: 'auto',
|
||
|
printWidth: 120,
|
||
|
semi: false,
|
||
|
singleQuote: true,
|
||
|
trailingComma: 'all',
|
||
|
}
|
||
|
|
||
|
module.exports = prettierConfig
|