mirror of
https://github.com/onsonr/motr.git
synced 2025-03-10 17:29:10 +00:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
tabWidth: 2,
|
|
printWidth: 80,
|
|
singleQuote: false,
|
|
jsxSingleQuote: false,
|
|
semi: true,
|
|
trailingComma: "es5",
|
|
arrowParens: "always",
|
|
};
|