sdk/js: Added .prettierrc.json file (#2028)

This commit is contained in:
kev1n-peters 2022-11-30 09:03:26 -06:00 committed by GitHub
parent fa270ec467
commit 74c5f5c471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

13
sdk/js/.prettierrc.json Normal file
View File

@ -0,0 +1,13 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always"
}