mirror of
https://github.com/foomo/next-utils.git
synced 2025-10-16 12:35:36 +00:00
11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
// prettier.config.js or .prettierrc.js
|
|
module.exports = {
|
|
singleQuote: true,
|
|
printWidth: 120,
|
|
jsxSingleQuote: false,
|
|
trailingComma: "es5",
|
|
semi: true,
|
|
arrowParens: "always",
|
|
tabWidth: 2,
|
|
};
|