perplexican / .prettierrc.js
0Scottzilla0's picture
Upload folder using huggingface_hub
a80ecb8 verified
raw
history blame contribute delete
201 Bytes
/** @type {import("prettier").Config} */
const config = {
printWidth: 80,
trailingComma: 'all',
endOfLine: 'auto',
singleQuote: true,
tabWidth: 2,
semi: true,
};
module.exports = config;