Skip to content

Commit

Permalink
chore: add .prettierrc (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
songkg7 authored Mar 9, 2023
1 parent 69d41db commit d8e6b12
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"trailingComma": "all",
"semi": true,
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"requirePragma": false,
"insertPragma": false,
"overrides": [
{
"files": "*.json",
"options": {
"printWidth": 200
}
}
]
}

0 comments on commit d8e6b12

Please sign in to comment.