mirror of
https://github.com/upstash/context7.git
synced 2025-06-26 23:50:04 +00:00
14 lines
213 B
JavaScript
14 lines
213 B
JavaScript
/**
|
|
* @type {import('prettier').Config}
|
|
*/
|
|
const config = {
|
|
endOfLine: "lf",
|
|
singleQuote: false,
|
|
tabWidth: 2,
|
|
trailingComma: "es5",
|
|
printWidth: 100,
|
|
arrowParens: "always",
|
|
};
|
|
|
|
export default config;
|