Skip to content

Commit

Permalink
Enforce single attribute per line in JS, JSX & Vue (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
germanfrelo authored May 27, 2024
1 parent 986b5d0 commit 6d98cda
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
{
"files": ["*.html", "*.css"],
"options": {
"printWidth": 999999
"printWidth": 9999
}
},
{
"files": ["*.js", "*.jsx", "*.vue"],
"options": { "singleAttributePerLine": true }
}
]
}

0 comments on commit 6d98cda

Please sign in to comment.