Skip to content

Commit

Permalink
config: sort prettier settings by abc
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeorpinel committed Sep 1, 2021
1 parent 06497b4 commit 36ae1cf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"semi": false,
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "none",
"printWidth": 80,
"proseWrap": "always",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"proseWrap": "always"
"trailingComma": "none",
"useTabs": false
}
10 changes: 5 additions & 5 deletions .restyled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ restylers:
arguments:
[
'--write',
'--trailing-comma=none',
'--no-semi',
'--arrow-parens=avoid',
'--single-quote=true',
'--print-width=80',
'--prose-wrap=always',
'--no-semi',
'--single-quote=true',
'--tab-width=2',
'--use-tabs=false',
'--prose-wrap=always'
'--trailing-comma=none',
'--use-tabs=false'
]
include:
- './*.{js,md}'
Expand Down

0 comments on commit 36ae1cf

Please sign in to comment.