Add prettier config to phoenix projects.

pull/12/head
Joshua Potter 2023-12-03 11:28:03 -07:00
parent 7849e3fcdd
commit aa872f7a4f
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/** @type {import('prettier').Options} */
module.exports = {
arrowParens: "always",
semi: false,
tabWidth: 2,
trailingComma: "es5",
}