Spaces:
No application file
No application file
File size: 213 Bytes
d207966 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/** @type {import("prettier").Config} */
const config = {
printWidth: 80,
trailingComma: 'all',
endOfLine: 'auto',
singleQuote: true,
tabWidth: 2,
semi: true,
};
module.exports = config;
|