mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 16:48:26 -04:00
11 lines
216 B
JavaScript
11 lines
216 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
module.exports = {
|
|
singleQuote: false,
|
|
jsxSingleQuote: false,
|
|
printWidth: 120,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
quoteProps: "as-needed",
|
|
trailingComma: "es5",
|
|
};
|