mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-04-29 07:42:46 +00:00
12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
/** @type {import("prettier").Config} */
|
|
|
|
const config = {
|
|
printWidth: 80,
|
|
trailingComma: 'all',
|
|
endOfLine: 'auto',
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
};
|
|
|
|
module.exports = config;
|